From 1f6488ccd6fa1d4c89577a6bc0055945a7bb95ec Mon Sep 17 00:00:00 2001 From: "Tiffany A. Timbers" Date: Fri, 12 Mar 2021 16:51:49 -0800 Subject: [PATCH] adding ISLR package --- r-dsci-100/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/r-dsci-100/Dockerfile b/r-dsci-100/Dockerfile index 3246e62c4b..fe9ab7de41 100644 --- a/r-dsci-100/Dockerfile +++ b/r-dsci-100/Dockerfile @@ -18,6 +18,9 @@ RUN conda install --quiet --yes -c conda-forge \ # Install the palmerpenguins dataset RUN Rscript -e "devtools::install_github('allisonhorst/palmerpenguins@v0.1.0')" +# Install ISLR package for the Credit data set +RUN Rscript -e "install.packages('ISLR', repos='http://cran.us.r-project.org')" + # Install jupyter extensions (nbgitpuller, git, jupytext) USER root