Where and how do I permanently change my option settings in R commander? Specifically, I want to change the log window height and the output window height?
Several features are controlled by run-time options, set via the options("Rcmdr")
command. These options should be set before the package is loaded (e.g. in appropriate .Rprofile or Rprofile.site files). See ?Commander
.
To change the log window height and the output window height you can use the following:
options(Rcmdr=list(output.height=10, log.height=5))
Update: this works for me
# .Rprofile
.First <- function() {
options(Rcmdr=list(output.height=10, log.height=5))
library("Rcmdr")
}