Generic method for model auto-selection.
Arguments
- object
Geographically Weighted Model
- ...
Additional parameters passing to
plot()
.- ymin
The lower bound of y-axis.
- x
An object of
modelselcritl
class.- y
Ignored.
- view
Name of view.
- main
The main title.
Functions
step_view_circle()
: Create circle view for model combinations in model selection.step_view_value()
: Create scatter plot for model selection criterion valuesstep_view_diff()
: Create scatter plot for differences of model selection criterion valuesplot(modelselcritl)
: Plot model selection criterions.
Examples
data(LondonHP)
m <- gwr_basic(
PURCHASE ~ FLOORSZ + UNEMPLOY + PROF + BATH2 + BEDS2 +
GARAGE1 + TYPEDETCH + TPSEMIDTCH + TYPETRRD + TYPEBNGLW +
BLDPWW1 +BLDPOSTW + BLD60S + BLD70S + BLD80S + CENTHEAT,
LondonHP, bw = "AIC", adaptive = TRUE
)
m <- step(m, threshold = 10, bw = Inf, optim_bw = "AIC")
plot(m$step)
plot(m$step, view = "value")
plot(m$step, view = "diff")