Stat 505 R setup

Log into newton to run R. Rstudio shows up in the Applications -- Development menu.
You should also install R on your own computer.


Significance stars in R output are outlawed! Use this option:
  options(show.signif.stars =FALSE)
or store it in a .First file which R runs when started in this directory
.First <- function(){
  options(show.signif.stars =FALSE)
}
save.image()
Or put the options into a text file called .Rprofile in the startup directory.
Use getwd() to see where that is.