Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

This R environment, and associated packages, is itself 1.7G - this is on top of the first example which still exists under the .conda folder in home.

...

Using R Environment

Code Block
[salexan5@mblog2 ~]$ salloc -A arcc -t 10:00
salloc: Granted job allocation 786989
salloc: Nodes mba30-001 are ready for job
[salexan5@mba30-001 ~]$ module load miniconda3/24.3.0
[salexan5@mba30-001 ~]$ conda activate r_env
(r_env) [salexan5@mba30-001 ~]$ Rscript r_test.R
── Attaching core tidyverse packages ──────────────────────────────────────────────────────────────────────────────────────────────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.3     ✔ readr     2.1.4
...
(r_env) [salexan5@mba30-001 ~]$ conda deactivate
[salexan5@mba30-001 ~]$ exit
exit
salloc: Relinquishing job allocation 786989

File: r_test.R

Code Block
library(tidyverse)

...

...