geocompx / geocompr

Geocomputation with R: an open source book
https://r.geocompx.org/
Other
1.52k stars 580 forks source link

Review 3: responses #244

Closed Nowosad closed 6 years ago

Nowosad commented 6 years ago

reviewer one

Chapter 9:

library(tmap)
library(spData)
nz$red = 1:nrow(nz)
qtm(nz, "red")

library(sf)
#> Linking to GEOS 3.5.1, GDAL 2.2.2, proj.4 4.9.2
nc = st_read(system.file("shape/nc.shp", package = "sf"))
#> Reading layer `nc' from data source `/home/robin/R/x86_64-pc-linux-gnu-library/3.4/sf/shape/nc.shp' using driver `ESRI Shapefile'
#> Simple feature collection with 100 features and 14 fields
#> geometry type:  MULTIPOLYGON
#> dimension:      XY
#> bbox:           xmin: -84.32385 ymin: 33.88199 xmax: -75.45698 ymax: 36.58965
#> epsg (SRID):    4267
#> proj4string:    +proj=longlat +datum=NAD27 +no_defs
old_par = par(mfrow = c(1, 3))
plot(st_geometry(nc), col = nc$AREA)
plot(st_geometry(nc), col = nc$AREA * 10)
plot(nc["AREA"], key.pos = NULL)

par(old_par)

Chapter 10:

Chapter 11:

Chapter 13:

Additional questions:

reviewer two

Chapter 12:

Chapter 9:

Chapter 10:

Chapter 11:

Chapter 13:

reviewer three

Chapter 12:

The chapter assumes you have an understanding of the geographic data classes introduced in Chapter 2, and have already imported the datasets needed for your work, for example from sources outlined in Chapter 7.

Chapter 9:

Chapter 10:

Chapter 11:

Chapter 13:

reviewer four

General remark:

Chapter 9:

Chapter 10:

Chapter 11:

Chapter 13:

Chapter 12:

Additional comments

Chapter 12:

> od_top5 = bristol_od %>% 
+   arrange(desc(all)) %>% 
+   top_n(5, wt = all)

Chapter 13:

Chapter 5:

Misc:

Robinlovelace commented 6 years ago

Now #178 is closed we can work on this - suggest we only fix the unambiguous and smaller issues and wait for further reviewers input before working on issues that need to be discussed and decided first.