├── .gitignore ├── LICENSE ├── README.md ├── here ├── .Rprofile ├── .dockerignore ├── Dockerfile ├── Dockerfile_install ├── here.Rproj ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.dcf ├── renv_install.sh └── wd.R ├── shiny_kmeans ├── .Rprofile ├── .dockerignore ├── Dockerfile ├── Dockerfile_install ├── app.R ├── renv.lock ├── renv │ ├── .gitignore │ ├── activate.R │ └── settings.dcf ├── renv_install.sh └── shiny_kmeans.Rproj └── shiny_kmeans_rcpp ├── .Rprofile ├── .dockerignore ├── Dockerfile ├── Dockerfile_install ├── app.R ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.dcf ├── renv_install.sh └── shiny_kmeans_rcpp.Rproj /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | */renv/library/* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/README.md -------------------------------------------------------------------------------- /here/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /here/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile* 2 | .Rhistory 3 | .Rproj.user 4 | -------------------------------------------------------------------------------- /here/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/here/Dockerfile -------------------------------------------------------------------------------- /here/Dockerfile_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/here/Dockerfile_install -------------------------------------------------------------------------------- /here/here.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/here/here.Rproj -------------------------------------------------------------------------------- /here/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/here/renv.lock -------------------------------------------------------------------------------- /here/renv/.gitignore: -------------------------------------------------------------------------------- 1 | local/ 2 | lock/ 3 | library/ 4 | python/ 5 | staging/ 6 | -------------------------------------------------------------------------------- /here/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/here/renv/activate.R -------------------------------------------------------------------------------- /here/renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/here/renv/settings.dcf -------------------------------------------------------------------------------- /here/renv_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/here/renv_install.sh -------------------------------------------------------------------------------- /here/wd.R: -------------------------------------------------------------------------------- 1 | library(here) 2 | -------------------------------------------------------------------------------- /shiny_kmeans/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /shiny_kmeans/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile* 2 | .Rhistory 3 | .Rproj.user 4 | -------------------------------------------------------------------------------- /shiny_kmeans/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans/Dockerfile -------------------------------------------------------------------------------- /shiny_kmeans/Dockerfile_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans/Dockerfile_install -------------------------------------------------------------------------------- /shiny_kmeans/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans/app.R -------------------------------------------------------------------------------- /shiny_kmeans/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans/renv.lock -------------------------------------------------------------------------------- /shiny_kmeans/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans/renv/.gitignore -------------------------------------------------------------------------------- /shiny_kmeans/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans/renv/activate.R -------------------------------------------------------------------------------- /shiny_kmeans/renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans/renv/settings.dcf -------------------------------------------------------------------------------- /shiny_kmeans/renv_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans/renv_install.sh -------------------------------------------------------------------------------- /shiny_kmeans/shiny_kmeans.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans/shiny_kmeans.Rproj -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile* 2 | .Rhistory 3 | .Rproj.user 4 | -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans_rcpp/Dockerfile -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/Dockerfile_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans_rcpp/Dockerfile_install -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans_rcpp/app.R -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans_rcpp/renv.lock -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans_rcpp/renv/.gitignore -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans_rcpp/renv/activate.R -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans_rcpp/renv/settings.dcf -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/renv_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans_rcpp/renv_install.sh -------------------------------------------------------------------------------- /shiny_kmeans_rcpp/shiny_kmeans_rcpp.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertdj/renv-docker/HEAD/shiny_kmeans_rcpp/shiny_kmeans_rcpp.Rproj --------------------------------------------------------------------------------