915
edits
Changes
→Configuring R: added notes about creating R scripts
=== Configuring R ===
Some R packages may need to be installed in your home folder. To do this go to your home folder <code>cd ~/</code> and enter the following to load the R modules, enter an R shell, install the packages and exit out. You will only have to do this once to install the relevant R packages in your script
<codepre>module load R
R
install.packages("PACKAGE_NAME")
exit()</codepre>
Follow the prompts agreeing to make a personal library and using the Michigan mirror (71)
=== Creating a R script ===
I prefer to generate Rmd scripts on my own computer and then transfer them to the data folder to run
== Transferring Results ==