├── .gitignore ├── LICENSE.md ├── README.md ├── Rmarkdown.Rmd ├── Rmarkdown.pdf ├── Rmarkdown_examples ├── data.txt ├── ecology-letters.csl ├── myproject.Rmd ├── param_reports │ ├── .gitignore │ ├── coords.csv │ ├── countrydata.csv │ ├── param_country.Rmd │ └── param_geo.Rmd └── references.bib ├── Rmarkdown_workshop.Rproj ├── data.txt ├── hideslide.lua └── images ├── Fig3.png ├── Rmd-exp-eng.png ├── Word-sentence.png ├── bibtex.png ├── bookdown.PNG ├── cc-by-nc-sa.png ├── chunknames_debugging.png ├── citations-Rstudio14.png ├── copy-paste.png ├── csl.png ├── emailmeme.jpg ├── gramr.jpg ├── horrormovie.PNG ├── integrated_workflow.png ├── naming_figs.png ├── outline.png ├── param_report_render.png ├── pnas.png ├── quarto.png ├── quarto2.png ├── quarto_ms.png ├── reproducibleR.png ├── reproducibleR_2.png ├── reproducibleR_3.png ├── revising_nonrepro.png ├── rmarkdown-book.PNG ├── rmarkdown-cheatsheet.png ├── rmarkdown-reference.png ├── rmarkdown.png ├── rmdrstudio.PNG ├── rrtools-addin.png ├── rstudio_templates.png ├── synamyn.png ├── trackdown-workflow.png ├── trevor_tweet.png ├── visualRmd.png ├── why-rmarkdown.PNG ├── wordcount.png ├── workflow.png ├── workflow.xcf └── xaringan.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/README.md -------------------------------------------------------------------------------- /Rmarkdown.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown.Rmd -------------------------------------------------------------------------------- /Rmarkdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown.pdf -------------------------------------------------------------------------------- /Rmarkdown_examples/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown_examples/data.txt -------------------------------------------------------------------------------- /Rmarkdown_examples/ecology-letters.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown_examples/ecology-letters.csl -------------------------------------------------------------------------------- /Rmarkdown_examples/myproject.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown_examples/myproject.Rmd -------------------------------------------------------------------------------- /Rmarkdown_examples/param_reports/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown_examples/param_reports/.gitignore -------------------------------------------------------------------------------- /Rmarkdown_examples/param_reports/coords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown_examples/param_reports/coords.csv -------------------------------------------------------------------------------- /Rmarkdown_examples/param_reports/countrydata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown_examples/param_reports/countrydata.csv -------------------------------------------------------------------------------- /Rmarkdown_examples/param_reports/param_country.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown_examples/param_reports/param_country.Rmd -------------------------------------------------------------------------------- /Rmarkdown_examples/param_reports/param_geo.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown_examples/param_reports/param_geo.Rmd -------------------------------------------------------------------------------- /Rmarkdown_examples/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown_examples/references.bib -------------------------------------------------------------------------------- /Rmarkdown_workshop.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/Rmarkdown_workshop.Rproj -------------------------------------------------------------------------------- /data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/data.txt -------------------------------------------------------------------------------- /hideslide.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/hideslide.lua -------------------------------------------------------------------------------- /images/Fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/Fig3.png -------------------------------------------------------------------------------- /images/Rmd-exp-eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/Rmd-exp-eng.png -------------------------------------------------------------------------------- /images/Word-sentence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/Word-sentence.png -------------------------------------------------------------------------------- /images/bibtex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/bibtex.png -------------------------------------------------------------------------------- /images/bookdown.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/bookdown.PNG -------------------------------------------------------------------------------- /images/cc-by-nc-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/cc-by-nc-sa.png -------------------------------------------------------------------------------- /images/chunknames_debugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/chunknames_debugging.png -------------------------------------------------------------------------------- /images/citations-Rstudio14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/citations-Rstudio14.png -------------------------------------------------------------------------------- /images/copy-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/copy-paste.png -------------------------------------------------------------------------------- /images/csl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/csl.png -------------------------------------------------------------------------------- /images/emailmeme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/emailmeme.jpg -------------------------------------------------------------------------------- /images/gramr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/gramr.jpg -------------------------------------------------------------------------------- /images/horrormovie.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/horrormovie.PNG -------------------------------------------------------------------------------- /images/integrated_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/integrated_workflow.png -------------------------------------------------------------------------------- /images/naming_figs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/naming_figs.png -------------------------------------------------------------------------------- /images/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/outline.png -------------------------------------------------------------------------------- /images/param_report_render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/param_report_render.png -------------------------------------------------------------------------------- /images/pnas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/pnas.png -------------------------------------------------------------------------------- /images/quarto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/quarto.png -------------------------------------------------------------------------------- /images/quarto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/quarto2.png -------------------------------------------------------------------------------- /images/quarto_ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/quarto_ms.png -------------------------------------------------------------------------------- /images/reproducibleR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/reproducibleR.png -------------------------------------------------------------------------------- /images/reproducibleR_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/reproducibleR_2.png -------------------------------------------------------------------------------- /images/reproducibleR_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/reproducibleR_3.png -------------------------------------------------------------------------------- /images/revising_nonrepro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/revising_nonrepro.png -------------------------------------------------------------------------------- /images/rmarkdown-book.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/rmarkdown-book.PNG -------------------------------------------------------------------------------- /images/rmarkdown-cheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/rmarkdown-cheatsheet.png -------------------------------------------------------------------------------- /images/rmarkdown-reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/rmarkdown-reference.png -------------------------------------------------------------------------------- /images/rmarkdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/rmarkdown.png -------------------------------------------------------------------------------- /images/rmdrstudio.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/rmdrstudio.PNG -------------------------------------------------------------------------------- /images/rrtools-addin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/rrtools-addin.png -------------------------------------------------------------------------------- /images/rstudio_templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/rstudio_templates.png -------------------------------------------------------------------------------- /images/synamyn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/synamyn.png -------------------------------------------------------------------------------- /images/trackdown-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/trackdown-workflow.png -------------------------------------------------------------------------------- /images/trevor_tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/trevor_tweet.png -------------------------------------------------------------------------------- /images/visualRmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/visualRmd.png -------------------------------------------------------------------------------- /images/why-rmarkdown.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/why-rmarkdown.PNG -------------------------------------------------------------------------------- /images/wordcount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/wordcount.png -------------------------------------------------------------------------------- /images/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/workflow.png -------------------------------------------------------------------------------- /images/workflow.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/workflow.xcf -------------------------------------------------------------------------------- /images/xaringan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/Rmarkdown_workshop/HEAD/images/xaringan.png --------------------------------------------------------------------------------