├── .gitignore ├── LICENSE.md ├── NOTES.md ├── README.md ├── data ├── gapminder.csv ├── gapminder_corrected.csv └── mess_data.R ├── dss_comp_boot_slides.Rmd ├── dss_comp_boot_slides.html ├── dss_comp_boot_temp.Rmd ├── dss_comp_boot_temp.html └── img ├── RSplash.png ├── RStudioSplash.png ├── data-science.png ├── phd_comics_vc.gif ├── six_git_commands.jpg ├── tidy-data.png ├── toolkit.png └── two-pronged-fork.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/README.md -------------------------------------------------------------------------------- /data/gapminder.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/data/gapminder.csv -------------------------------------------------------------------------------- /data/gapminder_corrected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/data/gapminder_corrected.csv -------------------------------------------------------------------------------- /data/mess_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/data/mess_data.R -------------------------------------------------------------------------------- /dss_comp_boot_slides.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/dss_comp_boot_slides.Rmd -------------------------------------------------------------------------------- /dss_comp_boot_slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/dss_comp_boot_slides.html -------------------------------------------------------------------------------- /dss_comp_boot_temp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/dss_comp_boot_temp.Rmd -------------------------------------------------------------------------------- /dss_comp_boot_temp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/dss_comp_boot_temp.html -------------------------------------------------------------------------------- /img/RSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/img/RSplash.png -------------------------------------------------------------------------------- /img/RStudioSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/img/RStudioSplash.png -------------------------------------------------------------------------------- /img/data-science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/img/data-science.png -------------------------------------------------------------------------------- /img/phd_comics_vc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/img/phd_comics_vc.gif -------------------------------------------------------------------------------- /img/six_git_commands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/img/six_git_commands.jpg -------------------------------------------------------------------------------- /img/tidy-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/img/tidy-data.png -------------------------------------------------------------------------------- /img/toolkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/img/toolkit.png -------------------------------------------------------------------------------- /img/two-pronged-fork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mine-cetinkaya-rundel/dss_computing_bootcamp/HEAD/img/two-pronged-fork.jpg --------------------------------------------------------------------------------