I'm a beginner with R. I want to launch R scripts at specific moments, managing this with Linux's cron
and launching the scripts as Rscript name_of_the_script
.
I have installed tidyverse
in Rstudio, with install.packages("tidyverse")
. Ok, but I guess that installation is specific to the Rstudio environment. When working in a script (not using Rstudio), and launching that script with Rscript, the library tidyverse
is not installed. Even worse, I couldn't install it in the script with install.packages("tidyverse")
.
What do you suggest? Thanks.