├── .gitignore ├── Dockerfile ├── README.md ├── create_your_own_binder.md └── data_for_container ├── bamboolib_demo_titanic.ipynb └── data ├── ports.csv └── titanic.csv /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/settings.json 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8080labs/bamboolib_binder_template/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8080labs/bamboolib_binder_template/HEAD/README.md -------------------------------------------------------------------------------- /create_your_own_binder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8080labs/bamboolib_binder_template/HEAD/create_your_own_binder.md -------------------------------------------------------------------------------- /data_for_container/bamboolib_demo_titanic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8080labs/bamboolib_binder_template/HEAD/data_for_container/bamboolib_demo_titanic.ipynb -------------------------------------------------------------------------------- /data_for_container/data/ports.csv: -------------------------------------------------------------------------------- 1 | Embarked,PortName 2 | S,Southampton 3 | C,Cherbourg 4 | Q,Queenstown 5 | -------------------------------------------------------------------------------- /data_for_container/data/titanic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8080labs/bamboolib_binder_template/HEAD/data_for_container/data/titanic.csv --------------------------------------------------------------------------------