Como definir R para usar toda a largura do meu terminal?
772
Estou executando interativo Rno terminal, no entanto, ele não usa toda a largura do terminal. Ele usa apenas 72 caracteres de 226. É muito desconfortável ler qualquer dado com muitas colunas exibidas em R.
‘width’: controls the maximum number of columns on a line used in
printing vectors, matrices and arrays, and when filling by
‘cat’.
Columns are normally the same as characters except in East
Asian languages.
You may want to change this if you re-size the window that R
is running in. Valid values are 10...10000 with default
normally 80. (The limits on valid values are in file
‘Print.h’ and can be changed by re-compiling R.) Some R
consoles automatically change the value when they are
resized.
Para consultar o valor:
R> getOption("width")
[1] 80
Para alterar o valor (adicione isso ~/.Rprofilepara alterá-lo permanentemente):
Veja
?option
:Para consultar o valor:
Para alterar o valor (adicione isso
~/.Rprofile
para alterá-lo permanentemente):