-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.Rmd
44 lines (32 loc) · 2.24 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
title: "Hands-On Spatial Data Science with R"
author: "Luc Anselin, Grant Morrison, Angela Li, Karina Acosta"
date: '`r Sys.Date()`'
github-repo: spatialanalysis/handsonspatialdata
bibliography:
- refs.bib
documentclass: "book"
site: bookdown::bookdown_site
---
# Introduction {-}
This book contains the R version of the [GeoDa Workbook](https://geodacenter.github.io/documentation.html) developed by Luc Anselin. It accompanies the Introduction to Spatial Data Science
course taught at the University of Chicago. Each chapter was originally developed
as a standalone lab tutorial for one week of the class. As a result, it is possible
to work through a single chapter on its own, though we recommend going from the
beginning to the end.
## Disclaimer {-}
This book is still **actively under development** and may not work for you when you access it. For versions of the lab notebooks that have been tested and are not undergoing changes, please see the [Tutorials page](https://spatialanalysis.github.io/tutorials/) on our Spatial Analysis with R website.
## Using This Book {-}
We have developed an R data package ([`geodaData`](https://github.com/spatialanalysis/geodaData))
to use along with this book, so you can work through through the exercises
immediately. To install it, run the following in your R console:
```{r eval=FALSE}
install.packages("geodaData")
```
## Who This Book Is For {-}
We assume that workshop attendees have used RStudio and are familiar with the basics of R.
If you need a refresher, this [R for Social Scientists](https://datacarpentry.org/r-socialsci/) tutorial developed by Data Carpentry is a good place to start. Additionally, Luc Anselin's introductory R lab notes can be found on the [CSDS Tutorials page](https://spatialanalysis.github.io/tutorials).
```{r setup, include=FALSE}
knitr::opts_chunk$set(warning = FALSE, message = FALSE)
```
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.