简体   繁体   中英

R Commander log window height

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 (eg 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")
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM