Rstudio仅显示前50列

时间:2019-05-27 19:04:13

标签: r dataframe rstudio

我在RStudio的数据视图中遇到问题,我只能看到所有数据帧的前50列。是否可以增加视图列的数量?

2 个答案:

答案 0 :(得分:1)

我认为您不能一次增加要查看的列数。但是您可以单击顶部的小箭头滚动到更多列。

enter image description here

我正在使用RStudio 1.2.1335,但不确定哪个版本的RStudio首先实现了此功能。

答案 1 :(得分:1)

您可以使用“隐藏的”RStudio 选项来设置查看器在切换到箭头之前将显示的最大列数。

此示例将数字设置为 1000 列:

rstudioapi::writeRStudioPreference("data_viewer_max_columns", 1000L)

RStudio developer's comment 上的 github issue about this topic 中找到。

---编辑---

您可以在 RStudio v1.4 的命令面板中设置此值:

enter image description here