What can I do to suppress the startup message in RStudio?
I tried without success:
.First <- function(){cat("\014")}
What can I do to suppress the startup message in RStudio?
I tried without success:
.First <- function(){cat("\014")}
If you are on a Linux/Unix based system, you can make an alias in your ~/.bashrc file like so:
alias R="R -q"