On Tue, 26 Mar 2019, James Garrett wrote:
Dear R-Sig-Geo List,
I am hoping to verify the output variables from a gwr model (package
spgwr). I've searched through the archives and haven't been able to find
exactly what a few are, although I have a strong guess from the package
description:
SDF a SpatialPointsDataFrame (may be gridded) or SpatialPolygonsDataFrame
object (see package "sp") with *fit.points, weights, GWR coefficient
estimates, Rsquared, and coefficient standard errors in its "data" slot.*
There is no need to guess. Help pages have examples. Run:
library(spgwr)
example(gwr)
str(col.gauss)
str(col.gauss$SDF)
names(col.gauss$SDF)
to examine the contents of the objects of the first run. Note that the rest
of the example script shows why GWR is unreliable.