Skip to contents

Printing gwlfit objects

Usage

# S3 method for class 'gwlfit'
print(x, ...)

Arguments

x

a gwlfit object

...

ellipsis for S3 method compatibility

Value

this function print key elements of a gwlfit object

Examples

predictors <- matrix(data = rnorm(2500), 50,50)
y_value <- sample(1:1000, 50)
coords <- data.frame("Lat" = rnorm(50), "Long" = rnorm(50))
distance_matrix <- compute_distance_matrix(coords)

my.gwl.fit <- gwl_fit(bw = 20,
                      x.var = predictors, 
                      y.var = y_value,
                      kernel = "bisquare",
                      dist.mat = distance_matrix, 
                      alpha = 1, 
                      adaptive = TRUE, 
                      progress = TRUE,
                      nfolds = 5)

my.gwl.fit
#> Bandwidth : 20 
#> adaptive : TRUE 
#> Number of models : 50 
#> RMSPE :  312.6015 
#> Number of predictors : 50