├── .gitignore ├── LICENSE ├── README.md ├── apis ├── README.md ├── analysis.R ├── api_key.R └── imgs │ └── yelp_map.png ├── dplyr ├── README.md └── analysis.R ├── ggplot2 ├── README.md ├── analysis.R ├── data │ └── Eviction_Notices.csv └── imgs │ └── eviction_notices.png ├── interactive-vis ├── README.md ├── analysis.R ├── data │ └── Building_Permits.csv └── imgs │ └── seattle_map.png ├── r-markdown ├── README.md ├── analysis.R ├── data │ └── API_SP.DYN.LE00.IN_DS2_en_csv_v2.csv ├── imgs │ └── report.png ├── index.Rmd └── index.html ├── shiny ├── README.md ├── app.R ├── data │ └── police-shootings.csv ├── get_lat_long.R └── imgs │ └── shooting-app.png └── tidyr ├── README.md ├── analysis.R ├── data └── world_bank_data.csv └── imgs ├── expenditure_chart.png ├── lit_chart.png └── spain_chart.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/README.md -------------------------------------------------------------------------------- /apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/apis/README.md -------------------------------------------------------------------------------- /apis/analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/apis/analysis.R -------------------------------------------------------------------------------- /apis/api_key.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/apis/api_key.R -------------------------------------------------------------------------------- /apis/imgs/yelp_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/apis/imgs/yelp_map.png -------------------------------------------------------------------------------- /dplyr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/dplyr/README.md -------------------------------------------------------------------------------- /dplyr/analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/dplyr/analysis.R -------------------------------------------------------------------------------- /ggplot2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/ggplot2/README.md -------------------------------------------------------------------------------- /ggplot2/analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/ggplot2/analysis.R -------------------------------------------------------------------------------- /ggplot2/data/Eviction_Notices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/ggplot2/data/Eviction_Notices.csv -------------------------------------------------------------------------------- /ggplot2/imgs/eviction_notices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/ggplot2/imgs/eviction_notices.png -------------------------------------------------------------------------------- /interactive-vis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/interactive-vis/README.md -------------------------------------------------------------------------------- /interactive-vis/analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/interactive-vis/analysis.R -------------------------------------------------------------------------------- /interactive-vis/data/Building_Permits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/interactive-vis/data/Building_Permits.csv -------------------------------------------------------------------------------- /interactive-vis/imgs/seattle_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/interactive-vis/imgs/seattle_map.png -------------------------------------------------------------------------------- /r-markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/r-markdown/README.md -------------------------------------------------------------------------------- /r-markdown/analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/r-markdown/analysis.R -------------------------------------------------------------------------------- /r-markdown/data/API_SP.DYN.LE00.IN_DS2_en_csv_v2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/r-markdown/data/API_SP.DYN.LE00.IN_DS2_en_csv_v2.csv -------------------------------------------------------------------------------- /r-markdown/imgs/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/r-markdown/imgs/report.png -------------------------------------------------------------------------------- /r-markdown/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/r-markdown/index.Rmd -------------------------------------------------------------------------------- /r-markdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/r-markdown/index.html -------------------------------------------------------------------------------- /shiny/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/shiny/README.md -------------------------------------------------------------------------------- /shiny/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/shiny/app.R -------------------------------------------------------------------------------- /shiny/data/police-shootings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/shiny/data/police-shootings.csv -------------------------------------------------------------------------------- /shiny/get_lat_long.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/shiny/get_lat_long.R -------------------------------------------------------------------------------- /shiny/imgs/shooting-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/shiny/imgs/shooting-app.png -------------------------------------------------------------------------------- /tidyr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/tidyr/README.md -------------------------------------------------------------------------------- /tidyr/analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/tidyr/analysis.R -------------------------------------------------------------------------------- /tidyr/data/world_bank_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/tidyr/data/world_bank_data.csv -------------------------------------------------------------------------------- /tidyr/imgs/expenditure_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/tidyr/imgs/expenditure_chart.png -------------------------------------------------------------------------------- /tidyr/imgs/lit_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/tidyr/imgs/lit_chart.png -------------------------------------------------------------------------------- /tidyr/imgs/spain_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programming-for-data-science/in-action/HEAD/tidyr/imgs/spain_chart.png --------------------------------------------------------------------------------