Skip to content

Commit

Permalink
address #50
Browse files Browse the repository at this point in the history
  • Loading branch information
rsbivand committed Jun 8, 2024
1 parent 2583422 commit 2a8b258
Show file tree
Hide file tree
Showing 15 changed files with 24 additions and 20 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: spatialreg
Version: 1.3-3
Date: 2024-05-31
Version: 1.3-4
Date: 2024-06-08
Title: Spatial Regression Analysis
Encoding: UTF-8
Authors@R: c(person("Roger", "Bivand", role = c("cre", "aut"), email = "[email protected]", comment=c(ORCID="0000-0003-2392-6140")),
Expand All @@ -25,7 +25,7 @@ Authors@R: c(person("Roger", "Bivand", role = c("cre", "aut"), email = "Roger.Bi
person(given = "Mauricio", family = "Sarrias", role = c("ctb"), email = "[email protected]"),
person(given = "JuanTomas", family = "Sayago", role = c("ctb"), email = "[email protected]"),
person("Michael", "Tiefelsdorf", role = "ctb"))
Depends: R (>= 3.3.0), spData, Matrix, sf
Depends: R (>= 3.3.0), spData (>= 2.3.2), Matrix, sf
Imports: spdep (>= 1.3-1), coda, methods, MASS, boot, splines, LearnBayes,
nlme, multcomp
Suggests: parallel, RSpectra, tmap, foreign, spam, knitr, lmtest, expm,
Expand Down
6 changes: 5 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Version 1.3-3 (development)
# Version 1.3-4 (development)

* migrate from ESRI Shapefile to GeoPackage #50

# Version 1.3-3 (2024-05-31)

* protect `errorsarlm` against missing `Durbin=` if only intercept

Expand Down
4 changes: 2 additions & 2 deletions man/ME.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ coef(summary(glmME))
anova(glmbase, glmME, test="Chisq")
\dontrun{
require("sf", quietly=TRUE)
columbus <- st_read(system.file("shapes/columbus.shp", package="spData")[1], quiet=TRUE)
columbus <- st_read(system.file("shapes/columbus.gpkg", package="spData")[1], quiet=TRUE)
#require("spdep", quietly=TRUE)
col.gal.nb <- spdep::read.gal(system.file("weights/columbus.gal", package="spData")[1])
lw <- spdep::nb2listw(col.gal.nb)
Expand Down Expand Up @@ -96,7 +96,7 @@ COL.ME.NA <- ME(CRIME ~ INC + HOVAL, data=NA.columbus, family="gaussian",
COL.ME.NA$na.action
summary(lm(CRIME ~ INC + HOVAL + fitted(COL.ME.NA), data=NA.columbus,
na.action=na.exclude))
nc.sids <- st_read(system.file("shapes/sids.shp", package="spData")[1], quiet=TRUE)
nc.sids <- st_read(system.file("shapes/sids.gpkg", package="spData")[1], quiet=TRUE)
rn <- as.character(nc.sids$FIPS)
ncCC89_nb <- spdep::read.gal(system.file("weights/ncCC89.gal", package="spData")[1],
region.id=rn)
Expand Down
2 changes: 1 addition & 1 deletion man/SpatialFiltering.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ SpatialFiltering(formula, lagformula=NULL, data=list(), na.action=na.fail,
\seealso{\code{\link[stats]{lm}}, \code{\link[base]{eigen}}, \code{\link{nb2listw}}, \code{\link{listw2U}}}
\examples{
require("sf", quietly=TRUE)
columbus <- st_read(system.file("shapes/columbus.shp", package="spData")[1], quiet=TRUE)
columbus <- st_read(system.file("shapes/columbus.gpkg", package="spData")[1], quiet=TRUE)
#require("spdep", quietly=TRUE)
col.gal.nb <- spdep::read.gal(system.file("weights/columbus.gal", package="spData")[1])
lmbase <- lm(CRIME ~ INC + HOVAL, data=columbus)
Expand Down
2 changes: 1 addition & 1 deletion man/aple.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ aple(x, listw, override_similarity_check=FALSE, useTrace=TRUE)
\seealso{\code{\link[spdep]{nb2listw}}, \code{\link{aple.mc}}, \code{\link{aple.plot}}
}
\examples{
wheat <- st_read(system.file("shapes/wheat.shp", package="spData")[1], quiet=TRUE)
wheat <- st_read(system.file("shapes/wheat.gpkg", package="spData")[1], quiet=TRUE)
library(spdep)
nbr1 <- spdep::poly2nb(wheat, queen=FALSE)
nbrl <- spdep::nblag(nbr1, 2)
Expand Down
2 changes: 1 addition & 1 deletion man/aple.mc.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ aple.mc(x, listw, nsim, override_similarity_check=FALSE, useTrace=TRUE)
\seealso{\code{\link{aple}}, \code{\link[boot]{boot}}}
\examples{
\dontrun{
wheat <- st_read(system.file("shapes/wheat.shp", package="spData")[1], quiet=TRUE)
wheat <- st_read(system.file("shapes/wheat.gpkg", package="spData")[1], quiet=TRUE)
nbr1 <- spdep::poly2nb(wheat, queen=FALSE)
nbrl <- spdep::nblag(nbr1, 2)
nbr12 <- spdep::nblag_cumul(nbrl)
Expand Down
2 changes: 1 addition & 1 deletion man/aple.plot.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ localAple(x, listw, override_similarity_check=FALSE, useTrace=TRUE)
\seealso{\code{\link{aple}}}
\examples{
\dontrun{
wheat <- st_read(system.file("shapes/wheat.shp", package="spData")[1], quiet=TRUE)
wheat <- st_read(system.file("shapes/wheat.gpkg", package="spData")[1], quiet=TRUE)
nbr1 <- spdep::poly2nb(wheat, queen=FALSE)
nbrl <- spdep::nblag(nbr1, 2)
nbr12 <- spdep::nblag_cumul(nbrl)
Expand Down
2 changes: 1 addition & 1 deletion man/impacts.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Roger Bivand, Gianfranco Piras (2015). Comparing Implementations of Estimation M
}
\examples{
require("sf", quietly=TRUE)
columbus <- st_read(system.file("shapes/columbus.shp", package="spData")[1], quiet=TRUE)
columbus <- st_read(system.file("shapes/columbus.gpkg", package="spData")[1], quiet=TRUE)
#require("spdep", quietly=TRUE)
col.gal.nb <- spdep::read.gal(system.file("weights/columbus.gal", package="spData")[1])
listw <- spdep::nb2listw(col.gal.nb)
Expand Down
2 changes: 1 addition & 1 deletion man/sarlm_tests.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Dordrecht: Kluwer, pp. 121--122.
\examples{
require("sf", quietly=TRUE)
columbus <- st_read(system.file("shapes/columbus.shp", package="spData")[1], quiet=TRUE)
columbus <- st_read(system.file("shapes/columbus.gpkg", package="spData")[1], quiet=TRUE)
#require("spdep", quietly=TRUE)
col.gal.nb <- spdep::read.gal(system.file("weights/columbus.gal", package="spData")[1])
lm.mod <- lm(CRIME ~ HOVAL + INC, data=columbus)
Expand Down
2 changes: 1 addition & 1 deletion man/sparse_mat.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ powerWeights(W, rho, order=250, X, tol=.Machine$double.eps^(3/5))
\examples{
\dontrun{
require(sf, quietly=TRUE)
columbus <- st_read(system.file("shapes/columbus.shp", package="spData")[1], quiet=TRUE)
columbus <- st_read(system.file("shapes/columbus.gpkg", package="spData")[1], quiet=TRUE)
#require(spdep, quietly=TRUE)
col.gal.nb <- spdep::read.gal(system.file("weights/columbus.gal", package="spData")[1])
col.listw <- spdep::nb2listw(col.gal.nb)
Expand Down
2 changes: 1 addition & 1 deletion man/spautolm.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ summary(ecar1wM)
}
\dontrun{
require("sf", quietly=TRUE)
nc.sids <- st_read(system.file("shapes/sids.shp", package="spData")[1], quiet=TRUE)
nc.sids <- st_read(system.file("shapes/sids.gpkg", package="spData")[1], quiet=TRUE)
ft.SID74 <- sqrt(1000)*(sqrt(nc.sids$SID74/nc.sids$BIR74) +
sqrt((nc.sids$SID74+1)/nc.sids$BIR74))
lm_nc <- lm(ft.SID74 ~ 1)
Expand Down
2 changes: 1 addition & 1 deletion man/trW.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ A numeric vector of \code{m} traces, with \dQuote{timings} and \dQuote{type} att
}
\examples{
require("sf", quietly=TRUE)
columbus <- st_read(system.file("shapes/columbus.shp", package="spData")[1], quiet=TRUE)
columbus <- st_read(system.file("shapes/columbus.gpkg", package="spData")[1], quiet=TRUE)
#require(spdep, quietly=TRUE)
col.gal.nb <- spdep::read.gal(system.file("weights/columbus.gal", package="spData")[1])
listw <- spdep::nb2listw(col.gal.nb)
Expand Down
2 changes: 1 addition & 1 deletion vignettes/SpatialFiltering.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ by Pedro Peres-Neto and is discussed in @dray+legendre+peres-neto:06 and
```{r echo=TRUE}
library(spdep)
require("sf", quietly=TRUE)
NY8 <- st_read(system.file("shapes/NY8_utm18.shp", package="spData"))
NY8 <- st_read(system.file("shapes/NY8_utm18.gpkg", package="spData"))
NY_nb <- read.gal(system.file("weights/NY_nb.gal", package="spData"), override.id=TRUE)
```
Expand Down
2 changes: 1 addition & 1 deletion vignettes/nb_igraph.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ if (dothis) {
```
```{r, echo=dothis, eval=dothis}
library(sf)
columbus <- st_read(system.file("shapes/columbus.shp", package="spData")[1])
columbus <- st_read(system.file("shapes/columbus.gpkg", package="spData")[1])
row.names(columbus)[1:10]
```

Expand Down
6 changes: 3 additions & 3 deletions vignettes/sids_models.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ data set in **spData**. The actual data, included in a shapefile of the county b

```{r echo=TRUE,eval=TRUE}
library(spdep)
nc <- st_read(system.file("shapes/sids.shp", package="spData")[1], quiet=TRUE)
st_crs(nc) <- "+proj=longlat +datum=NAD27"
nc <- st_read(system.file("shapes/sids.gpkg", package="spData")[1], quiet=TRUE)
#st_crs(nc) <- "+proj=longlat +datum=NAD27"
row.names(nc) <- as.character(nc$FIPSNO)
```

Expand Down Expand Up @@ -175,4 +175,4 @@ plot(ll ~ lambda, ecarIawll$llprof, type="l")
## References

[^1]: These data were taken with permission from a now-offline link:
[sal.agecon.uiuc.edu/datasets/sids.zip]; see also [GeoDa Center](https://geodacenter.github.io/data-and-lab/) for a contemporary source.
[sal.agecon.uiuc.edu/datasets/sids.zip]; see also [GeoDa Center](https://geodacenter.github.io/data-and-lab/) for a contemporary source.

0 comments on commit 2a8b258

Please sign in to comment.