├── Dockerfile ├── Jenkinsfile ├── LICENSE ├── README.md ├── RProfile.R ├── bioconductor_installs.R ├── clean-layer.sh ├── diff ├── gpu.Dockerfile ├── install_iR.R ├── kaggle ├── kaggle_bigquery.R ├── kaggle_secrets.R └── template_conf.json ├── ldpaths ├── nbconvert-extensions.tpl ├── package_installs.R ├── push ├── test ├── tests ├── data │ ├── notebook.ipynb │ ├── sample_submission.csv │ └── testocr.png ├── test_bigquery.R ├── test_gg.R ├── test_graphics.R ├── test_imports.R ├── test_jupyterlab-lsp.R ├── test_keras.R ├── test_languageserver.R ├── test_mxnet.R ├── test_nbconvert.R ├── test_papermill.R ├── test_patchwork.R ├── test_secrets.R ├── test_tensorflow.R ├── test_tesseract.R ├── test_tidymodels.R ├── test_topicmodels.R └── test_torch.R ├── testthat.R └── tools └── r_list_versions.R /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/README.md -------------------------------------------------------------------------------- /RProfile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/RProfile.R -------------------------------------------------------------------------------- /bioconductor_installs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/bioconductor_installs.R -------------------------------------------------------------------------------- /clean-layer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/clean-layer.sh -------------------------------------------------------------------------------- /diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/diff -------------------------------------------------------------------------------- /gpu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/gpu.Dockerfile -------------------------------------------------------------------------------- /install_iR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/install_iR.R -------------------------------------------------------------------------------- /kaggle/kaggle_bigquery.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/kaggle/kaggle_bigquery.R -------------------------------------------------------------------------------- /kaggle/kaggle_secrets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/kaggle/kaggle_secrets.R -------------------------------------------------------------------------------- /kaggle/template_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/kaggle/template_conf.json -------------------------------------------------------------------------------- /ldpaths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/ldpaths -------------------------------------------------------------------------------- /nbconvert-extensions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/nbconvert-extensions.tpl -------------------------------------------------------------------------------- /package_installs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/package_installs.R -------------------------------------------------------------------------------- /push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/push -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/test -------------------------------------------------------------------------------- /tests/data/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/data/notebook.ipynb -------------------------------------------------------------------------------- /tests/data/sample_submission.csv: -------------------------------------------------------------------------------- 1 | id_code,diagnosis 2 | testocr,0 -------------------------------------------------------------------------------- /tests/data/testocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/data/testocr.png -------------------------------------------------------------------------------- /tests/test_bigquery.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_bigquery.R -------------------------------------------------------------------------------- /tests/test_gg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_gg.R -------------------------------------------------------------------------------- /tests/test_graphics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_graphics.R -------------------------------------------------------------------------------- /tests/test_imports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_imports.R -------------------------------------------------------------------------------- /tests/test_jupyterlab-lsp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_jupyterlab-lsp.R -------------------------------------------------------------------------------- /tests/test_keras.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_keras.R -------------------------------------------------------------------------------- /tests/test_languageserver.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_languageserver.R -------------------------------------------------------------------------------- /tests/test_mxnet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_mxnet.R -------------------------------------------------------------------------------- /tests/test_nbconvert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_nbconvert.R -------------------------------------------------------------------------------- /tests/test_papermill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_papermill.R -------------------------------------------------------------------------------- /tests/test_patchwork.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_patchwork.R -------------------------------------------------------------------------------- /tests/test_secrets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_secrets.R -------------------------------------------------------------------------------- /tests/test_tensorflow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_tensorflow.R -------------------------------------------------------------------------------- /tests/test_tesseract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_tesseract.R -------------------------------------------------------------------------------- /tests/test_tidymodels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_tidymodels.R -------------------------------------------------------------------------------- /tests/test_topicmodels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_topicmodels.R -------------------------------------------------------------------------------- /tests/test_torch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tests/test_torch.R -------------------------------------------------------------------------------- /testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/testthat.R -------------------------------------------------------------------------------- /tools/r_list_versions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaggle/docker-rstats/HEAD/tools/r_list_versions.R --------------------------------------------------------------------------------