How to increase the number of columns using R in Linux

前端 未结 6 1012
没有蜡笔的小新
没有蜡笔的小新 2020-11-29 02:17

This may seem menial, but it affects my productivity. I am using R in terminal mode on Linux. Unlike the Windows IDE, Linux limits the number of columns to 80, thus making h

6条回答
  •  野性不改
    2020-11-29 03:00

    Set it with something like

    options("width"=200)
    

    which is in fact what I have in ~/.Rprofile. See help(options) for details.

提交回复
热议问题