gpt4 book ai didi

r - 在 RStudio 中查看 1000 多行

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

在 RStudio 中使用 View() 时功能,它最多只允许您查看 1000 行。有什么办法可以看到更多。我知道可以对查看进行子集化并查看行 1000-2000,例如,但我希望能够查看 1-2000。我能找到的最好的是大约一年前的评论说当时不可能,但他们正计划解决这个问题。

这是一个示例(注意:我猜您必须在 RStudio 中运行它)。

rstudio <- (1:2000)
View(rstudio)

最佳答案

View命令专门用于小助手窗口。您可以在实际控制台窗口中轻松查看完整值。如果您想要相同的布局,请使用 cbind。

cbind(rstudio)

这实际上甚至会给你同样好的行编号设置

如果这太麻烦
pview <- function(x, rows=100) { 
if (length(x) > rows)
print(cbind(x))
else
print(cbind(head(x, rows/2)))
print(cbind(tail(x, rows/2)))
}
pview(rstudio, 1998)

您需要清理它以使行名称排列

关于r - 在 RStudio 中查看 1000 多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18003331/

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