├── .gitignore ├── Exercise-1 ├── Exercise-1-notebook.ipynb └── Exercise1.md ├── Exercise-2 ├── Exercise-2.md ├── Notebook A.ipynb ├── Notebook B.ipynb ├── Report.md └── lib.py ├── Exercise-3 ├── Exercise-3.md └── example.json ├── Exercise-4 ├── Certificate.ipynb ├── Exercise-4.md └── example.cert ├── certificate-extension ├── .gitignore ├── README.md ├── example.cert ├── package.json ├── src │ └── index.ts ├── style │ └── index.css ├── tsconfig.json └── yarn.lock ├── data ├── 1024px-Hubble_Interacting_Galaxy_AM_0500-620_(2008-04-24).jpg ├── Dockerfile ├── Museums_in_DC.geojson ├── README.md ├── bar.vl.json ├── iris.csv ├── japan_meterological_agency_201707211555.json └── zika_assembled_genomes.fasta ├── environment.yml ├── notebooks ├── Data.ipynb ├── Fasta.ipynb ├── Lorenz.ipynb ├── bqplot demo.ipynb └── lorenz.py ├── outline.md └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /Exercise-1/Exercise-1-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-1/Exercise-1-notebook.ipynb -------------------------------------------------------------------------------- /Exercise-1/Exercise1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-1/Exercise1.md -------------------------------------------------------------------------------- /Exercise-2/Exercise-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-2/Exercise-2.md -------------------------------------------------------------------------------- /Exercise-2/Notebook A.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-2/Notebook A.ipynb -------------------------------------------------------------------------------- /Exercise-2/Notebook B.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-2/Notebook B.ipynb -------------------------------------------------------------------------------- /Exercise-2/Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-2/Report.md -------------------------------------------------------------------------------- /Exercise-2/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-2/lib.py -------------------------------------------------------------------------------- /Exercise-3/Exercise-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-3/Exercise-3.md -------------------------------------------------------------------------------- /Exercise-3/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-3/example.json -------------------------------------------------------------------------------- /Exercise-4/Certificate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-4/Certificate.ipynb -------------------------------------------------------------------------------- /Exercise-4/Exercise-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-4/Exercise-4.md -------------------------------------------------------------------------------- /Exercise-4/example.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/Exercise-4/example.cert -------------------------------------------------------------------------------- /certificate-extension/.gitignore: -------------------------------------------------------------------------------- 1 | *.bundle.* 2 | lib/ 3 | node_modules/ 4 | *.egg-info/ 5 | -------------------------------------------------------------------------------- /certificate-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/certificate-extension/README.md -------------------------------------------------------------------------------- /certificate-extension/example.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/certificate-extension/example.cert -------------------------------------------------------------------------------- /certificate-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/certificate-extension/package.json -------------------------------------------------------------------------------- /certificate-extension/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/certificate-extension/src/index.ts -------------------------------------------------------------------------------- /certificate-extension/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/certificate-extension/style/index.css -------------------------------------------------------------------------------- /certificate-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/certificate-extension/tsconfig.json -------------------------------------------------------------------------------- /certificate-extension/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/certificate-extension/yarn.lock -------------------------------------------------------------------------------- /data/1024px-Hubble_Interacting_Galaxy_AM_0500-620_(2008-04-24).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/data/1024px-Hubble_Interacting_Galaxy_AM_0500-620_(2008-04-24).jpg -------------------------------------------------------------------------------- /data/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/data/Dockerfile -------------------------------------------------------------------------------- /data/Museums_in_DC.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/data/Museums_in_DC.geojson -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/data/README.md -------------------------------------------------------------------------------- /data/bar.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/data/bar.vl.json -------------------------------------------------------------------------------- /data/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/data/iris.csv -------------------------------------------------------------------------------- /data/japan_meterological_agency_201707211555.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/data/japan_meterological_agency_201707211555.json -------------------------------------------------------------------------------- /data/zika_assembled_genomes.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/data/zika_assembled_genomes.fasta -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/notebooks/Data.ipynb -------------------------------------------------------------------------------- /notebooks/Fasta.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/notebooks/Fasta.ipynb -------------------------------------------------------------------------------- /notebooks/Lorenz.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/notebooks/Lorenz.ipynb -------------------------------------------------------------------------------- /notebooks/bqplot demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/notebooks/bqplot demo.ipynb -------------------------------------------------------------------------------- /notebooks/lorenz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/notebooks/lorenz.py -------------------------------------------------------------------------------- /outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/outline.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/scipy2019-jupyterlab-tutorial/HEAD/readme.md --------------------------------------------------------------------------------