├── .gitignore ├── Fast-R.Rproj ├── Fast-script.R ├── LICENSE ├── README.md ├── data ├── gapminder-FiveYearData.csv └── heart.csv ├── image.png └── mini-project ├── mini-project.Rmd └── mini-project.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/Fast-R/HEAD/.gitignore -------------------------------------------------------------------------------- /Fast-R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/Fast-R/HEAD/Fast-R.Rproj -------------------------------------------------------------------------------- /Fast-script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/Fast-R/HEAD/Fast-script.R -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/Fast-R/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/Fast-R/HEAD/README.md -------------------------------------------------------------------------------- /data/gapminder-FiveYearData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/Fast-R/HEAD/data/gapminder-FiveYearData.csv -------------------------------------------------------------------------------- /data/heart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/Fast-R/HEAD/data/heart.csv -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/Fast-R/HEAD/image.png -------------------------------------------------------------------------------- /mini-project/mini-project.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/Fast-R/HEAD/mini-project/mini-project.Rmd -------------------------------------------------------------------------------- /mini-project/mini-project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlab-berkeley/Fast-R/HEAD/mini-project/mini-project.html --------------------------------------------------------------------------------