gpt4 book ai didi

r - 如何在底部禁用 data.table 名称?

转载 作者:行者123 更新时间:2023-12-04 23:42:08 25 4
gpt4 key购买 nike

我在 Windows 7 上运行 Rstudio 0.99.489 和 R-3.2.3

如何避免在数据底部打印 V1 和 N?

options(datatable.print.nrows = Inf)
dt <- data.table(sample.int(2e3, 1e4, T))
print(dt[ , .(.N), V1])

...
1980: 419 1
1981: 898 2
1982: 1260 1
V1 N

最佳答案

您可以将对象的打印作为常规字符向量进行操作。

library(data.table)
options(datatable.print.nrows = Inf)
dt = data.table(sample.int(2e3, 1e4, T))
myprint = function(x){
prnt = capture.output(print(x))
cat(prnt[-length(prnt)], sep="\n")
}
myprint(dt[ , .(.N), V1])

关于r - 如何在底部禁用 data.table 名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34511495/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com