Ceci est une ancienne révision du document !
R is a free software environment for statistical computing and graphics.
Vous devez :
Exemple :
hello.r
print ('Hello') q(save="no")
hello.sbatch
#!/bin/bash #SBATCH --job-name=hello_R #SBATCH --partition=rapide #SBATCH --qos=rapide # Si vous faites des gros calculs : donner le nombre de CPU, le temps et la méoire module load R/3.1.1 R --no-save < hello.r
sbatch hello.sbatch