├── .github └── workflows │ └── run-check.yml ├── .nojekyll ├── Intro1.R ├── Intro2.R ├── LICENSE.md ├── Makefile ├── README.md ├── TODO.md ├── _includes ├── MagrittePipe.png ├── license.html ├── main_bottom.html └── setup.R ├── cc-by-nc.png ├── data ├── ChlorellaGrowth.csv ├── energy_production.csv ├── hurricanes.csv ├── mosquitoes.csv ├── oil_production.csv └── seedpred.dat ├── index.html ├── index.md ├── jss.csl ├── munging.R ├── munging.Rmd ├── munging.html ├── rules.mk ├── tutorial.R ├── tutorial.Rmd ├── tutorial.bib ├── tutorial.html ├── viz.R ├── viz.Rmd └── viz.html /.github/workflows/run-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/.github/workflows/run-check.yml -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intro1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/Intro1.R -------------------------------------------------------------------------------- /Intro2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/Intro2.R -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/TODO.md -------------------------------------------------------------------------------- /_includes/MagrittePipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/_includes/MagrittePipe.png -------------------------------------------------------------------------------- /_includes/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/_includes/license.html -------------------------------------------------------------------------------- /_includes/main_bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/_includes/main_bottom.html -------------------------------------------------------------------------------- /_includes/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/_includes/setup.R -------------------------------------------------------------------------------- /cc-by-nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/cc-by-nc.png -------------------------------------------------------------------------------- /data/ChlorellaGrowth.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/data/ChlorellaGrowth.csv -------------------------------------------------------------------------------- /data/energy_production.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/data/energy_production.csv -------------------------------------------------------------------------------- /data/hurricanes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/data/hurricanes.csv -------------------------------------------------------------------------------- /data/mosquitoes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/data/mosquitoes.csv -------------------------------------------------------------------------------- /data/oil_production.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/data/oil_production.csv -------------------------------------------------------------------------------- /data/seedpred.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/data/seedpred.dat -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/index.html -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/index.md -------------------------------------------------------------------------------- /jss.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/jss.csl -------------------------------------------------------------------------------- /munging.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/munging.R -------------------------------------------------------------------------------- /munging.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/munging.Rmd -------------------------------------------------------------------------------- /munging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/munging.html -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/rules.mk -------------------------------------------------------------------------------- /tutorial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/tutorial.R -------------------------------------------------------------------------------- /tutorial.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/tutorial.Rmd -------------------------------------------------------------------------------- /tutorial.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/tutorial.bib -------------------------------------------------------------------------------- /tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/tutorial.html -------------------------------------------------------------------------------- /viz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/viz.R -------------------------------------------------------------------------------- /viz.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/viz.Rmd -------------------------------------------------------------------------------- /viz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingaa/R_Tutorial/HEAD/viz.html --------------------------------------------------------------------------------