A rendered (html) version of this book is available here. The pdf version has been submitted to CRC/Chapman and Hall, for hardcopy publication.
To recreate/reproduce this book:
- git clone this repository
- download the data used in Ch 13 from https://uni-muenster.sciebo.de/s/8mEbeHPOX9GdAYn, and extract the contents of the
aq
subdirectory intosdsr/aq
- install all R packages listed under Dependencies
- install quarto
- run
quarto render --to html
See also the Dockerfile; building the (18 Gb) image with
docker build . -t sdsr --build-arg TZ=`timedatectl show --property=Timezone | awk -F = '{print $2}'`
and running it with
docker run -p 8787:8787 -e DISABLE_AUTH=true -ti --rm sdsr
will serve an Rstudio server instance on http://localhost:8787/, without authentication.
After running the docker image and opening rstudio
in the browser:
- click on
01-hello.qmd
in the bottom-right pane - click on the
Render
button of the top-left pane to compile the whole book - this should open a new browser window with the full book rendered (switch off popup blocker for localhost)
- to run a selected code section, possibly after modification, find the selected code section in the corresponding
.qmd
file, and click the small green arrow symbols on the top-right corner of the code blocks:- to prepare, first click
Run All Chunks Above
, - to run the selected section: click
Run Current Chunk
- to prepare, first click
To locally process the book, download (clone) this repository and install the following R packages from CRAN:
install.packages(c(
"dbscan",
"gstat",
"hglm",
"igraph",
"lme4",
"lmtest",
"maps",
"mapview",
"matrixStats",
"mgcv",
"R2BayesX",
"rgeoda",
"rnaturalearth",
"rnaturalearthdata",
"sf",
"spatialreg",
"spdep",
"spData",
"stars",
"tidyverse",
"tmap"))
Install INLA
:
install.packages("INLA", repos = c(getOption("repos"), INLA="https://inla.r-inla-download.org/R/stable"))
Install spDataLarge
:
options(timeout = 600); install.packages("spDataLarge", repos = "https://nowosad.github.io/drat/",type = "source")
Install starsdata
:
options(timeout = 1200); install.packages("starsdata", repos = "http://pebesma.staff.ifgi.de", type = "source")
Install stars
from source from github (not needed after stars >= 0.6-0 is available from CRAN), either from source:
install.packages("remotes")
remotes::install_github("r-spatial/stars")
or as binary from r-universe
:
options(repos = c(
rspatial = "https://r-spatial.r-universe.dev",
CRAN = "https://cloud.r-project.org"))
install.packages(c("stars"))