├── .gitignore ├── LICENSE ├── README.md ├── do-render ├── fig ├── R_Bugzilla_1_Welcome.png ├── R_Bugzilla_2_Search.png ├── R_Bugzilla_3_Buglist.png ├── rblog_2019-10_reviewBugReps.png ├── rblog_2019-12_ThanksRev.png └── rblog_2021-04_TestingR.png ├── outline.md └── outline.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmbecker/contributing_to_r_lesson/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmbecker/contributing_to_r_lesson/HEAD/README.md -------------------------------------------------------------------------------- /do-render: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | Rscript -e 'rmarkdown::render("outline.md")' 3 | -------------------------------------------------------------------------------- /fig/R_Bugzilla_1_Welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmbecker/contributing_to_r_lesson/HEAD/fig/R_Bugzilla_1_Welcome.png -------------------------------------------------------------------------------- /fig/R_Bugzilla_2_Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmbecker/contributing_to_r_lesson/HEAD/fig/R_Bugzilla_2_Search.png -------------------------------------------------------------------------------- /fig/R_Bugzilla_3_Buglist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmbecker/contributing_to_r_lesson/HEAD/fig/R_Bugzilla_3_Buglist.png -------------------------------------------------------------------------------- /fig/rblog_2019-10_reviewBugReps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmbecker/contributing_to_r_lesson/HEAD/fig/rblog_2019-10_reviewBugReps.png -------------------------------------------------------------------------------- /fig/rblog_2019-12_ThanksRev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmbecker/contributing_to_r_lesson/HEAD/fig/rblog_2019-12_ThanksRev.png -------------------------------------------------------------------------------- /fig/rblog_2021-04_TestingR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmbecker/contributing_to_r_lesson/HEAD/fig/rblog_2021-04_TestingR.png -------------------------------------------------------------------------------- /outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmbecker/contributing_to_r_lesson/HEAD/outline.md -------------------------------------------------------------------------------- /outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmbecker/contributing_to_r_lesson/HEAD/outline.pdf --------------------------------------------------------------------------------