Changes between Version 1 and Version 2 of cypress/R
- Timestamp:
- 08/19/15 14:40:17 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/R
v1 v2 3 3 = Running R on Cypress = 4 4 5 == PythonModules ==5 == R Modules == 6 6 As of August 18th, 2015 there is one version of R installed on Cypress in the module 7 7 … … 67 67 == Running a R script in Batch mode == 68 68 69 You can also submit your Python job to the batch nodes (compute nodes) on Cypress. Inside your SLURM script, include a command to load the desired Python module. Then invoke '''python''' on your pythonscript.69 You can also submit your R job to the batch nodes (compute nodes) on Cypress. Inside your SLURM script, include a command to load the desired R module. Then invoke the '''Rscript''' command on your R script. 70 70 71 71 {{{#!bash … … 80 80 81 81 module load R/3.1.2 82 pythonmyRscript.py82 R myRscript.py 83 83 }}} 84 84