From b58cf9703aed90e2d97714aee07509b1a92ddc61 Mon Sep 17 00:00:00 2001 From: "Tiffany A. Timbers" Date: Sun, 17 Jan 2021 21:50:21 -0800 Subject: [PATCH] added palmerpenguins --- r-dsci-100/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/r-dsci-100/Dockerfile b/r-dsci-100/Dockerfile index e9c35a0c31..3246e62c4b 100644 --- a/r-dsci-100/Dockerfile +++ b/r-dsci-100/Dockerfile @@ -15,6 +15,9 @@ RUN conda install --quiet --yes -c conda-forge \ r-testthat=2.3.* \ r-rpostgres=1.2.* +# Install the palmerpenguins dataset +RUN Rscript -e "devtools::install_github('allisonhorst/palmerpenguins@v0.1.0')" + # Install jupyter extensions (nbgitpuller, git, jupytext) USER root