gwr.model.view {GWmodel}R Documentation

Visualise the GWR models from gwr.model.selection

Description

This function visualises the GWR models from gwr.model.selection.

Usage

gwr.model.view(DeVar, InDeVars, model.list)

Arguments

DeVar

dependent variable

InDeVars

a vector of independent variables for model selection

model.list

a list of all GWR model tried in gwr.model.selection

Note

The function “model.view.gwr” (in the early versions of GWmodel) has been renamed as “gwr.model.view”, while the old name is still kept valid.

Author(s)

Binbin Lu binbinlu@whu.edu.cn

See Also

gwr.model.selection, gwr.model.sort

Examples

## Not run: 
data(LondonHP)
DM<-gw.dist(dp.locat=coordinates(londonhp))
DeVar<-"PURCHASE"
InDeVars<-c("FLOORSZ","GARAGE1","BLDPWW1","BLDPOSTW")
model.sel<-gwr.model.selection(DeVar,InDeVars, data=londonhp,
kernel = "gaussian", dMat=DM,bw=5000)
model.list<-model.sel[[1]]
gwr.model.view(DeVar, InDeVars, model.list=model.list)

## End(Not run)

[Package GWmodel version 2.3-2 Index]