R

R is a free software environment for statistical computing and graphics. It compiles and runs on a wide variety of UNIX platforms, Windows and MacOS.

Usage

Example script : testR.sh

#!/bin/bash

#SBATCH -e R_test%j.err
#SBATCH -o R_test%j.msg
#SBATCH -p thin
#SBATCH -N 4
#SBATCH --ntasks-per-node=24

module load R/4.2.1

R --help
R --version

Submit with :

sbatch --account=your_project_ID testR.sh

More info :