Changes between Version 1 and Version 2 of cypress/R


Ignore:
Timestamp:
08/19/15 14:40:17 (9 years ago)
Author:
cmaggio
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/R

    v1 v2  
    33= Running R on Cypress =
    44
    5 == Python Modules ==
     5== R Modules ==
    66As of August 18th, 2015 there is one version of R installed on Cypress in the module
    77
     
    6767== Running a R script in Batch mode ==
    6868
    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 python script.
     69You 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.
    7070
    7171{{{#!bash
     
    8080
    8181module load R/3.1.2
    82 python myRscript.py
     82R myRscript.py
    8383}}}
    8484