rang icon indicating copy to clipboard operation
rang copied to clipboard

🐶 (Re)constructing R computational environments

Results 18 rang issues
Sort by recently updated
recently updated
newest added

Help! I am unable to build container with docker with the method described under the heading of "Using alternative Rocker images": I am trying to recreate an environment to replicate...

There were changes but R older than 2.5 were really different, e.g. no `seq_along`; versions older than 1.9 can't even use snake case. A even safer approach is to use...

https://mastodon.social/@eliocamp/111251808081362665/embed This comment is fair. But can we change that? The R script generated by `export_rang()` can run without a container, as long as the R version allows it (`renv`...

Many old Rocker and EOL images use Debian Stretch, which has been EOL since June 2022. The grace period is also lapsed recently, therefore it is no longer usable. This...

What if I just want to have an ancient R environment with no additional package?

Again, we have all the ingredients. The good things about this is that `as_pkgs` can look for `Remotes` for possible Github packages. For `export_description`, we can dump `x=handle@uid` (Github package)...

GHA can be later; but at least local should be fine. ```sh temp=`mktemp -d` Rscript -e "rang::dockerize(rang::resolve(\"cran/sna\", snapshot_date = \"2005-10-01\"), cache = TRUE, output_dir = \"$temp\")"; docker build -t test...

This looks a nice package for an all too common issue... One issue I see is that installed packages often are not up to date when an analysis is done...

We need a list of special packages removed due to moving to the core. These are the real default ```r ## getOption("defaultPackages") c("datasets", "utils", "grDevices", "graphics", "stats", "methods") ``` These...

* rmarkdown / latex: `RUN apt-get -y install pandoc pandoc-citeproc texlive` * quarto: `RUN apt-get install -y curl git && curl -LO https://quarto.org/download/latest/quarto-linux-amd64.deb && dpkg -i quarto-linux-amd64.deb && quarto install...