├── .gitignore ├── LICENSE ├── README.md ├── R_example_for_Jupyter.ipynb ├── R_example_for_RStudio.Rmd ├── binder ├── environment.yml ├── install.R ├── postBuild └── runtime.txt ├── python_example_for_Jupyter.ipynb └── python_example_for_RStudio.Rmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binder-examples/r_with_python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binder-examples/r_with_python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binder-examples/r_with_python/HEAD/README.md -------------------------------------------------------------------------------- /R_example_for_Jupyter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binder-examples/r_with_python/HEAD/R_example_for_Jupyter.ipynb -------------------------------------------------------------------------------- /R_example_for_RStudio.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binder-examples/r_with_python/HEAD/R_example_for_RStudio.Rmd -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binder-examples/r_with_python/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binder-examples/r_with_python/HEAD/binder/install.R -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binder-examples/r_with_python/HEAD/binder/postBuild -------------------------------------------------------------------------------- /binder/runtime.txt: -------------------------------------------------------------------------------- 1 | r-2018-11-01 -------------------------------------------------------------------------------- /python_example_for_Jupyter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binder-examples/r_with_python/HEAD/python_example_for_Jupyter.ipynb -------------------------------------------------------------------------------- /python_example_for_RStudio.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binder-examples/r_with_python/HEAD/python_example_for_RStudio.Rmd --------------------------------------------------------------------------------