Difference between revisions of "R"

From HPC users
Jump to navigationJump to search
Line 1: Line 1:
R (release 2.15.2) is available by
There are two R releases available on FLOW and HERO. The actual relase is available by  


   module load r/2.15.2
   module load r/3.0.1
 
With this command the corresponding Intel compilers and Intel MPI will be automatically loaded.
 
'''Note:''' The release 2.15.2 is depricated and only for legacy on the system.




== Additional installed packages ==
== Additional installed packages ==
The module contains following additional R packages:
The actual release contains a lot of additional R packages, for example
* bitops_1.0-5
 
* caTools_1.14
  chron, abind, ade4, akima, bitops, caTools, circular, doMC, doMPI, ensembleBMA, foreach, gdata, geosphere,
* chron_2.3-43
  gplots, gtools, hht, iterators, lattice, latticeExtra, ncdf, raster, RColorBrewer, RCurl, signal, solaR,
* doMC_1.2.5
  stringr, timeDate, truncnorm, VGAM, zoo
* doMPI_0.1-5
 
* ensembleBMA_5.0.3
and many more...
* foreach_1.4.0
 
* gdata_2.12.0
== Usage of R adn MPI ==
* gplots_2.11.0
* gtools_2.7.0.tar.gz
* iterators_1.0.6
* lattice_0.20-13
* multicore_0.1-7
* ncdf_1.6.6
* Rmpi_0.6-1
* truncnorm_1.0-6


For parallel scripts the R contains the package Rmpi. To launch an parallel R script inside an [[SGE Job Management (Queueing) System| SGE]] script please use command line


== Usage and extension ==
  mpirun -bootstrap sge -np $NSLOTS -env I_MPI_FABRICS shm:ofa R ''SCRIPTNAME'' ''SCRIPT_CMDLINE_OPTIONS''
For the installation of additional packages and for MPI usage please load following modules:
  module load intel/ics/64/2011.0.013 intel/impi/64/4.0.1.007


to enable SGE to control all processes of your script.


== External links ==
== External links ==
* [http://www.r-project.org/ R project]
* [http://www.r-project.org/ R project]
* [http://cran.r-project.org/manuals.html R manuals]
* [http://cran.r-project.org/manuals.html R manuals]

Revision as of 17:25, 7 June 2013

There are two R releases available on FLOW and HERO. The actual relase is available by

 module load r/3.0.1

With this command the corresponding Intel compilers and Intel MPI will be automatically loaded.

Note: The release 2.15.2 is depricated and only for legacy on the system.


Additional installed packages

The actual release contains a lot of additional R packages, for example

  chron, abind, ade4, akima, bitops, caTools, circular, doMC, doMPI, ensembleBMA, foreach, gdata, geosphere,
  gplots, gtools, hht, iterators, lattice, latticeExtra, ncdf, raster, RColorBrewer, RCurl, signal, solaR,
  stringr, timeDate, truncnorm, VGAM, zoo

and many more...

Usage of R adn MPI

For parallel scripts the R contains the package Rmpi. To launch an parallel R script inside an SGE script please use command line

  mpirun -bootstrap sge -np $NSLOTS -env I_MPI_FABRICS shm:ofa R SCRIPTNAME SCRIPT_CMDLINE_OPTIONS

to enable SGE to control all processes of your script.

External links