├── .gitignore ├── README.md ├── _freeze ├── site_libs │ ├── clipboard │ │ └── clipboard.min.js │ ├── quarto-listing │ │ ├── list.min.js │ │ └── quarto-listing.js │ └── revealjs │ │ ├── dist │ │ ├── reset.css │ │ ├── reveal.css │ │ ├── reveal.esm.js │ │ ├── reveal.esm.js.map │ │ ├── reveal.js │ │ ├── reveal.js.map │ │ └── theme │ │ │ ├── fonts │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ │ └── quarto.css │ │ └── plugin │ │ ├── highlight │ │ ├── highlight.esm.js │ │ ├── highlight.js │ │ ├── monokai.css │ │ ├── plugin.js │ │ └── zenburn.css │ │ ├── markdown │ │ ├── markdown.esm.js │ │ ├── markdown.js │ │ └── plugin.js │ │ ├── math │ │ ├── katex.js │ │ ├── math.esm.js │ │ ├── math.js │ │ ├── mathjax2.js │ │ ├── mathjax3.js │ │ └── plugin.js │ │ ├── multiplex │ │ ├── multiplex.js │ │ ├── plugin.yml │ │ └── socket.io.js │ │ ├── notes │ │ ├── notes.esm.js │ │ ├── notes.js │ │ ├── plugin.js │ │ └── speaker-view.html │ │ ├── pdf-export │ │ ├── pdfexport.js │ │ └── plugin.yml │ │ ├── quarto-line-highlight │ │ ├── line-highlight.css │ │ ├── line-highlight.js │ │ └── plugin.yml │ │ ├── quarto-support │ │ ├── footer.css │ │ ├── plugin.yml │ │ └── support.js │ │ ├── reveal-menu │ │ ├── menu.css │ │ ├── menu.js │ │ ├── plugin.yml │ │ ├── quarto-menu.css │ │ └── quarto-menu.js │ │ ├── search │ │ ├── plugin.js │ │ ├── search.esm.js │ │ └── search.js │ │ └── zoom │ │ ├── plugin.js │ │ ├── zoom.esm.js │ │ └── zoom.js └── talks │ ├── 1-welcome │ └── welcome │ │ └── execute-results │ │ └── html.json │ ├── 2-intro-ds │ └── intro-ds │ │ └── execute-results │ │ └── html.json │ ├── 3-r-python │ └── r-python │ │ └── execute-results │ │ └── html.json │ └── 5-teaching-materials │ └── quarto-teaching-materials │ └── execute-results │ └── html.json ├── _quarto.yml ├── index.qmd ├── jsm-logo.png ├── talks ├── 1-welcome │ ├── featured.png │ ├── images │ │ ├── hello-quarto.png │ │ ├── horst-teach-quarto.png │ │ ├── horst_meteor.png │ │ ├── horst_qmd_render_schema.png │ │ ├── horst_quarto_schematic.png │ │ ├── quarto-blog.png │ │ ├── quarto-org.png │ │ ├── source-editor.png │ │ ├── thank-you.png │ │ ├── visual-editor.png │ │ ├── yaml-less.png │ │ └── yaml-more.png │ ├── index.qmd │ ├── mine.jpeg │ ├── welcome-speaker.html │ ├── welcome.qmd │ └── welcome.scss ├── 2-intro-ds │ ├── elijah.png │ ├── featured.png │ ├── images │ │ ├── ChunkArguments.png │ │ ├── YAML.png │ │ ├── ae-demo.gif │ │ ├── citation.png │ │ ├── code.png │ │ ├── commonanswer1.png │ │ ├── commonanswer2.png │ │ ├── commonanswer3.png │ │ ├── commonmistake1.png │ │ ├── commonmistake2.png │ │ ├── commonmistake3.png │ │ ├── crossref.png │ │ ├── crossref2.png │ │ ├── demo1.gif │ │ ├── demo2.gif │ │ ├── demodoc.png │ │ ├── doc.png │ │ ├── ezgif.com-crop.gif │ │ ├── figure-set.gif │ │ ├── lines.png │ │ ├── logo.png │ │ ├── logo_199.png │ │ ├── message-complete.gif │ │ ├── pnas.png │ │ ├── process.png │ │ ├── process2.png │ │ ├── process3.png │ │ ├── process4.png │ │ ├── process5.png │ │ ├── process6.png │ │ ├── project1.png │ │ ├── project2.png │ │ ├── projectvid.gif │ │ ├── quarto1.png │ │ ├── quarto2.png │ │ ├── quarto_logo.png │ │ ├── quarto_visual.png │ │ ├── quarto_visual2.png │ │ ├── render.png │ │ ├── reproduce.png │ │ ├── source.png │ │ ├── source2.png │ │ ├── text.png │ │ ├── visual.png │ │ └── visual2.png │ ├── index.qmd │ ├── intro-ds.qmd │ ├── intro-ds.scss │ └── references.bib ├── 3-r-python │ ├── featured.png │ ├── images │ │ └── global_opts_python.png │ ├── index.qmd │ ├── kelly-bodwin.jpg │ └── r-python.qmd ├── 4-automation │ ├── colin.jpeg │ ├── featured.png │ └── index.qmd └── 5-teaching-materials │ ├── featured.png │ ├── img │ ├── file-structure-annoated.png │ ├── file-structure.png │ ├── python-slide-code.png │ ├── python-slide.png │ ├── sta210-assignment.png │ ├── sta210-long-notes.png │ ├── sta210-slide-code.png │ ├── sta210-slide.png │ └── sta210-website.png │ ├── index.qmd │ ├── maria-tackett-photo.png │ ├── quarto-teaching-materials.qmd │ └── quarto-teaching-materials.scss └── teach-with-quarto.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/README.md -------------------------------------------------------------------------------- /_freeze/site_libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /_freeze/site_libs/quarto-listing/list.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/quarto-listing/list.min.js -------------------------------------------------------------------------------- /_freeze/site_libs/quarto-listing/quarto-listing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/quarto-listing/quarto-listing.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/reset.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/reveal.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reveal.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/reveal.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reveal.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/reveal.esm.js.map -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/reveal.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/reveal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/reveal.js.map -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/fonts/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/dist/theme/quarto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/dist/theme/quarto.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/highlight/highlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/highlight/highlight.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/highlight/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/highlight/monokai.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/highlight/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/highlight/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/highlight/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/highlight/zenburn.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/markdown/markdown.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/markdown/markdown.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/markdown/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/markdown/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/katex.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/math.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/math.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/math.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/mathjax2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/mathjax2.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/mathjax3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/mathjax3.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/math/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/math/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/multiplex/multiplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/multiplex/multiplex.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/multiplex/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/multiplex/plugin.yml -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/multiplex/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/multiplex/socket.io.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/notes/notes.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/notes/notes.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/notes/notes.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/notes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/notes/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/notes/speaker-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/notes/speaker-view.html -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/pdf-export/pdfexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/pdf-export/pdfexport.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/pdf-export/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/pdf-export/plugin.yml -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-line-highlight/line-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-line-highlight/line-highlight.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-line-highlight/line-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-line-highlight/line-highlight.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-line-highlight/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-line-highlight/plugin.yml -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-support/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-support/footer.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-support/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-support/plugin.yml -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/quarto-support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/quarto-support/support.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/reveal-menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/reveal-menu/menu.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/reveal-menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/reveal-menu/menu.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/reveal-menu/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/reveal-menu/plugin.yml -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/reveal-menu/quarto-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/reveal-menu/quarto-menu.css -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/reveal-menu/quarto-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/reveal-menu/quarto-menu.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/search/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/search/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/search/search.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/search/search.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/search/search.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/zoom/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/zoom/plugin.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/zoom/zoom.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/zoom/zoom.esm.js -------------------------------------------------------------------------------- /_freeze/site_libs/revealjs/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/site_libs/revealjs/plugin/zoom/zoom.js -------------------------------------------------------------------------------- /_freeze/talks/1-welcome/welcome/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/talks/1-welcome/welcome/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/talks/2-intro-ds/intro-ds/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/talks/2-intro-ds/intro-ds/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/talks/3-r-python/r-python/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/talks/3-r-python/r-python/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/talks/5-teaching-materials/quarto-teaching-materials/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_freeze/talks/5-teaching-materials/quarto-teaching-materials/execute-results/html.json -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/_quarto.yml -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/index.qmd -------------------------------------------------------------------------------- /jsm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/jsm-logo.png -------------------------------------------------------------------------------- /talks/1-welcome/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/featured.png -------------------------------------------------------------------------------- /talks/1-welcome/images/hello-quarto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/hello-quarto.png -------------------------------------------------------------------------------- /talks/1-welcome/images/horst-teach-quarto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/horst-teach-quarto.png -------------------------------------------------------------------------------- /talks/1-welcome/images/horst_meteor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/horst_meteor.png -------------------------------------------------------------------------------- /talks/1-welcome/images/horst_qmd_render_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/horst_qmd_render_schema.png -------------------------------------------------------------------------------- /talks/1-welcome/images/horst_quarto_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/horst_quarto_schematic.png -------------------------------------------------------------------------------- /talks/1-welcome/images/quarto-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/quarto-blog.png -------------------------------------------------------------------------------- /talks/1-welcome/images/quarto-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/quarto-org.png -------------------------------------------------------------------------------- /talks/1-welcome/images/source-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/source-editor.png -------------------------------------------------------------------------------- /talks/1-welcome/images/thank-you.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/thank-you.png -------------------------------------------------------------------------------- /talks/1-welcome/images/visual-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/visual-editor.png -------------------------------------------------------------------------------- /talks/1-welcome/images/yaml-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/yaml-less.png -------------------------------------------------------------------------------- /talks/1-welcome/images/yaml-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/images/yaml-more.png -------------------------------------------------------------------------------- /talks/1-welcome/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/index.qmd -------------------------------------------------------------------------------- /talks/1-welcome/mine.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/mine.jpeg -------------------------------------------------------------------------------- /talks/1-welcome/welcome-speaker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/welcome-speaker.html -------------------------------------------------------------------------------- /talks/1-welcome/welcome.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/welcome.qmd -------------------------------------------------------------------------------- /talks/1-welcome/welcome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/1-welcome/welcome.scss -------------------------------------------------------------------------------- /talks/2-intro-ds/elijah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/elijah.png -------------------------------------------------------------------------------- /talks/2-intro-ds/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/featured.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/ChunkArguments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/ChunkArguments.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/YAML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/YAML.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/ae-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/ae-demo.gif -------------------------------------------------------------------------------- /talks/2-intro-ds/images/citation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/citation.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/code.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/commonanswer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/commonanswer1.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/commonanswer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/commonanswer2.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/commonanswer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/commonanswer3.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/commonmistake1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/commonmistake1.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/commonmistake2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/commonmistake2.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/commonmistake3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/commonmistake3.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/crossref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/crossref.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/crossref2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/crossref2.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/demo1.gif -------------------------------------------------------------------------------- /talks/2-intro-ds/images/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/demo2.gif -------------------------------------------------------------------------------- /talks/2-intro-ds/images/demodoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/demodoc.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/doc.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/ezgif.com-crop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/ezgif.com-crop.gif -------------------------------------------------------------------------------- /talks/2-intro-ds/images/figure-set.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/figure-set.gif -------------------------------------------------------------------------------- /talks/2-intro-ds/images/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/lines.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/logo.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/logo_199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/logo_199.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/message-complete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/message-complete.gif -------------------------------------------------------------------------------- /talks/2-intro-ds/images/pnas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/pnas.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/process.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/process2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/process2.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/process3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/process3.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/process4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/process4.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/process5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/process5.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/process6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/process6.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/project1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/project1.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/project2.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/projectvid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/projectvid.gif -------------------------------------------------------------------------------- /talks/2-intro-ds/images/quarto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/quarto1.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/quarto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/quarto2.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/quarto_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/quarto_logo.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/quarto_visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/quarto_visual.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/quarto_visual2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/quarto_visual2.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/render.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/reproduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/reproduce.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/source.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/source2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/source2.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/text.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/visual.png -------------------------------------------------------------------------------- /talks/2-intro-ds/images/visual2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/images/visual2.png -------------------------------------------------------------------------------- /talks/2-intro-ds/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/index.qmd -------------------------------------------------------------------------------- /talks/2-intro-ds/intro-ds.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/intro-ds.qmd -------------------------------------------------------------------------------- /talks/2-intro-ds/intro-ds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/intro-ds.scss -------------------------------------------------------------------------------- /talks/2-intro-ds/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/2-intro-ds/references.bib -------------------------------------------------------------------------------- /talks/3-r-python/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/3-r-python/featured.png -------------------------------------------------------------------------------- /talks/3-r-python/images/global_opts_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/3-r-python/images/global_opts_python.png -------------------------------------------------------------------------------- /talks/3-r-python/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/3-r-python/index.qmd -------------------------------------------------------------------------------- /talks/3-r-python/kelly-bodwin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/3-r-python/kelly-bodwin.jpg -------------------------------------------------------------------------------- /talks/3-r-python/r-python.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/3-r-python/r-python.qmd -------------------------------------------------------------------------------- /talks/4-automation/colin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/4-automation/colin.jpeg -------------------------------------------------------------------------------- /talks/4-automation/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/4-automation/featured.png -------------------------------------------------------------------------------- /talks/4-automation/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/4-automation/index.qmd -------------------------------------------------------------------------------- /talks/5-teaching-materials/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/featured.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/img/file-structure-annoated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/img/file-structure-annoated.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/img/file-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/img/file-structure.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/img/python-slide-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/img/python-slide-code.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/img/python-slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/img/python-slide.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/img/sta210-assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/img/sta210-assignment.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/img/sta210-long-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/img/sta210-long-notes.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/img/sta210-slide-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/img/sta210-slide-code.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/img/sta210-slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/img/sta210-slide.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/img/sta210-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/img/sta210-website.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/index.qmd -------------------------------------------------------------------------------- /talks/5-teaching-materials/maria-tackett-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/maria-tackett-photo.png -------------------------------------------------------------------------------- /talks/5-teaching-materials/quarto-teaching-materials.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/quarto-teaching-materials.qmd -------------------------------------------------------------------------------- /talks/5-teaching-materials/quarto-teaching-materials.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/talks/5-teaching-materials/quarto-teaching-materials.scss -------------------------------------------------------------------------------- /teach-with-quarto.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/teach-with-quarto/HEAD/teach-with-quarto.Rproj --------------------------------------------------------------------------------