├── .dir-locals.el ├── .gitignore ├── .nojekyll ├── .travis.yml ├── 02-why-jupyter.md ├── 03-notebooks-in-teaching-and-learning.md ├── 04-a-catalogue-of-pedagogical-patterns.md ├── 05-jupyter-ecosystem.md ├── 06-getting-your-class-going-with-jupyter.md ├── 07-usage-case-studies.md ├── 08-about-the-authors.md ├── 09-glossary.md ├── 90-references.Rmd ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── _bookdown.yml ├── _build.sh ├── _deploy.sh ├── _output.yml ├── apa.csl ├── book.bib ├── bookdown-demo.Rproj ├── contributors.md ├── fonts ├── texgyrepagella-bold.otf ├── texgyrepagella-bolditalic.otf ├── texgyrepagella-italic.otf ├── texgyrepagella-math.otf └── texgyrepagella-regular.otf ├── icons ├── caution.png ├── caution2.png ├── caution2_2x.png ├── caution_2x.png ├── icons.txt ├── important.png ├── important_2x.png ├── note.png ├── note_2x.png ├── tip.png ├── tip_2x.png ├── warning.png └── warning_2x.png ├── images ├── DC-layered-earth-app.png ├── Fig_notebook.png ├── activity-magic-instructor.png ├── activity-magic-student.png ├── chapter50.png ├── chapter52.png ├── chapter53.png ├── chapter54.png ├── engcomp2lesson4-life-expectancy.png ├── exit-ticket-instructor.png ├── exit-ticket-student.png ├── favicon.ico ├── hurricanes.png ├── jigsaw.png ├── nbtutor_next1.png ├── nbtutor_next3.png ├── notebook-matplotlib-interact.png ├── oldenburg-geosci.jpg ├── processing.png └── shocktube.png ├── index.Rmd ├── now.json ├── preamble.tex ├── style.css └── toc.css /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/.travis.yml -------------------------------------------------------------------------------- /02-why-jupyter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/02-why-jupyter.md -------------------------------------------------------------------------------- /03-notebooks-in-teaching-and-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/03-notebooks-in-teaching-and-learning.md -------------------------------------------------------------------------------- /04-a-catalogue-of-pedagogical-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/04-a-catalogue-of-pedagogical-patterns.md -------------------------------------------------------------------------------- /05-jupyter-ecosystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/05-jupyter-ecosystem.md -------------------------------------------------------------------------------- /06-getting-your-class-going-with-jupyter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/06-getting-your-class-going-with-jupyter.md -------------------------------------------------------------------------------- /07-usage-case-studies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/07-usage-case-studies.md -------------------------------------------------------------------------------- /08-about-the-authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/08-about-the-authors.md -------------------------------------------------------------------------------- /09-glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/09-glossary.md -------------------------------------------------------------------------------- /90-references.Rmd: -------------------------------------------------------------------------------- 1 | # References {-} 2 | -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/README.md -------------------------------------------------------------------------------- /_bookdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/_bookdown.yml -------------------------------------------------------------------------------- /_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/_build.sh -------------------------------------------------------------------------------- /_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/_deploy.sh -------------------------------------------------------------------------------- /_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/_output.yml -------------------------------------------------------------------------------- /apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/apa.csl -------------------------------------------------------------------------------- /book.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/book.bib -------------------------------------------------------------------------------- /bookdown-demo.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/bookdown-demo.Rproj -------------------------------------------------------------------------------- /contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/contributors.md -------------------------------------------------------------------------------- /fonts/texgyrepagella-bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/fonts/texgyrepagella-bold.otf -------------------------------------------------------------------------------- /fonts/texgyrepagella-bolditalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/fonts/texgyrepagella-bolditalic.otf -------------------------------------------------------------------------------- /fonts/texgyrepagella-italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/fonts/texgyrepagella-italic.otf -------------------------------------------------------------------------------- /fonts/texgyrepagella-math.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/fonts/texgyrepagella-math.otf -------------------------------------------------------------------------------- /fonts/texgyrepagella-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/fonts/texgyrepagella-regular.otf -------------------------------------------------------------------------------- /icons/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/caution.png -------------------------------------------------------------------------------- /icons/caution2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/caution2.png -------------------------------------------------------------------------------- /icons/caution2_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/caution2_2x.png -------------------------------------------------------------------------------- /icons/caution_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/caution_2x.png -------------------------------------------------------------------------------- /icons/icons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/icons.txt -------------------------------------------------------------------------------- /icons/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/important.png -------------------------------------------------------------------------------- /icons/important_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/important_2x.png -------------------------------------------------------------------------------- /icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/note.png -------------------------------------------------------------------------------- /icons/note_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/note_2x.png -------------------------------------------------------------------------------- /icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/tip.png -------------------------------------------------------------------------------- /icons/tip_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/tip_2x.png -------------------------------------------------------------------------------- /icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/warning.png -------------------------------------------------------------------------------- /icons/warning_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/icons/warning_2x.png -------------------------------------------------------------------------------- /images/DC-layered-earth-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/DC-layered-earth-app.png -------------------------------------------------------------------------------- /images/Fig_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/Fig_notebook.png -------------------------------------------------------------------------------- /images/activity-magic-instructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/activity-magic-instructor.png -------------------------------------------------------------------------------- /images/activity-magic-student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/activity-magic-student.png -------------------------------------------------------------------------------- /images/chapter50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/chapter50.png -------------------------------------------------------------------------------- /images/chapter52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/chapter52.png -------------------------------------------------------------------------------- /images/chapter53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/chapter53.png -------------------------------------------------------------------------------- /images/chapter54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/chapter54.png -------------------------------------------------------------------------------- /images/engcomp2lesson4-life-expectancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/engcomp2lesson4-life-expectancy.png -------------------------------------------------------------------------------- /images/exit-ticket-instructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/exit-ticket-instructor.png -------------------------------------------------------------------------------- /images/exit-ticket-student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/exit-ticket-student.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/hurricanes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/hurricanes.png -------------------------------------------------------------------------------- /images/jigsaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/jigsaw.png -------------------------------------------------------------------------------- /images/nbtutor_next1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/nbtutor_next1.png -------------------------------------------------------------------------------- /images/nbtutor_next3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/nbtutor_next3.png -------------------------------------------------------------------------------- /images/notebook-matplotlib-interact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/notebook-matplotlib-interact.png -------------------------------------------------------------------------------- /images/oldenburg-geosci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/oldenburg-geosci.jpg -------------------------------------------------------------------------------- /images/processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/processing.png -------------------------------------------------------------------------------- /images/shocktube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/images/shocktube.png -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/index.Rmd -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/now.json -------------------------------------------------------------------------------- /preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/preamble.tex -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/style.css -------------------------------------------------------------------------------- /toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter4edu/jupyter-edu-book/HEAD/toc.css --------------------------------------------------------------------------------