├── .gitignore ├── README.md ├── data ├── england_lsoa_2011.zip ├── hpdata.csv ├── nomis-2011-age-data.zip ├── police-uk-2018-12-merseyside-street.csv ├── pop2011.csv └── sthelens.zip ├── images ├── europe-pop-r.png ├── function.png ├── glossary-p1.png ├── google-r-multiple-maps.png ├── map-example-outputs-1.png ├── map-output.png ├── monmonier-telephones.png ├── plot-2-maps.png ├── readShapeSpatial-deprecated.png ├── rstudio-in-use-selected.png ├── rstudio-in-use.png ├── rstudio-labelled.png ├── script-multiple-map-pdf.png ├── script-single-map-pdf.png ├── script-single-map.png ├── spatial-autocorrelation.png ├── stack-exchange-answer.png └── stack-exchange.png ├── links.htm ├── presentation-intro-r-short.pdf ├── script-examples ├── script-SP-multiple-maps-title.R ├── script-SP-multiple-maps.R ├── script-SP-single-map.R ├── script-crime-rates.R ├── script-multiple-maps-title.R ├── script-multiple-maps.R └── script-single-map.R ├── short-r-course-repo.Rproj ├── software-requirements.txt ├── workbook.Rmd └── workbook.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/README.md -------------------------------------------------------------------------------- /data/england_lsoa_2011.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/data/england_lsoa_2011.zip -------------------------------------------------------------------------------- /data/hpdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/data/hpdata.csv -------------------------------------------------------------------------------- /data/nomis-2011-age-data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/data/nomis-2011-age-data.zip -------------------------------------------------------------------------------- /data/police-uk-2018-12-merseyside-street.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/data/police-uk-2018-12-merseyside-street.csv -------------------------------------------------------------------------------- /data/pop2011.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/data/pop2011.csv -------------------------------------------------------------------------------- /data/sthelens.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/data/sthelens.zip -------------------------------------------------------------------------------- /images/europe-pop-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/europe-pop-r.png -------------------------------------------------------------------------------- /images/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/function.png -------------------------------------------------------------------------------- /images/glossary-p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/glossary-p1.png -------------------------------------------------------------------------------- /images/google-r-multiple-maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/google-r-multiple-maps.png -------------------------------------------------------------------------------- /images/map-example-outputs-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/map-example-outputs-1.png -------------------------------------------------------------------------------- /images/map-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/map-output.png -------------------------------------------------------------------------------- /images/monmonier-telephones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/monmonier-telephones.png -------------------------------------------------------------------------------- /images/plot-2-maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/plot-2-maps.png -------------------------------------------------------------------------------- /images/readShapeSpatial-deprecated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/readShapeSpatial-deprecated.png -------------------------------------------------------------------------------- /images/rstudio-in-use-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/rstudio-in-use-selected.png -------------------------------------------------------------------------------- /images/rstudio-in-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/rstudio-in-use.png -------------------------------------------------------------------------------- /images/rstudio-labelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/rstudio-labelled.png -------------------------------------------------------------------------------- /images/script-multiple-map-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/script-multiple-map-pdf.png -------------------------------------------------------------------------------- /images/script-single-map-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/script-single-map-pdf.png -------------------------------------------------------------------------------- /images/script-single-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/script-single-map.png -------------------------------------------------------------------------------- /images/spatial-autocorrelation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/spatial-autocorrelation.png -------------------------------------------------------------------------------- /images/stack-exchange-answer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/stack-exchange-answer.png -------------------------------------------------------------------------------- /images/stack-exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/images/stack-exchange.png -------------------------------------------------------------------------------- /links.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/links.htm -------------------------------------------------------------------------------- /presentation-intro-r-short.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/presentation-intro-r-short.pdf -------------------------------------------------------------------------------- /script-examples/script-SP-multiple-maps-title.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/script-examples/script-SP-multiple-maps-title.R -------------------------------------------------------------------------------- /script-examples/script-SP-multiple-maps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/script-examples/script-SP-multiple-maps.R -------------------------------------------------------------------------------- /script-examples/script-SP-single-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/script-examples/script-SP-single-map.R -------------------------------------------------------------------------------- /script-examples/script-crime-rates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/script-examples/script-crime-rates.R -------------------------------------------------------------------------------- /script-examples/script-multiple-maps-title.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/script-examples/script-multiple-maps-title.R -------------------------------------------------------------------------------- /script-examples/script-multiple-maps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/script-examples/script-multiple-maps.R -------------------------------------------------------------------------------- /script-examples/script-single-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/script-examples/script-single-map.R -------------------------------------------------------------------------------- /short-r-course-repo.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/short-r-course-repo.Rproj -------------------------------------------------------------------------------- /software-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/software-requirements.txt -------------------------------------------------------------------------------- /workbook.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/workbook.Rmd -------------------------------------------------------------------------------- /workbook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbearman/intro-r-spatial-analysis-short/HEAD/workbook.pdf --------------------------------------------------------------------------------