print.gwlest | R Documentation |
Printing gwlest objects
## S3 method for class 'gwlest'
print(x, ...)
x |
an object of class |
... |
ellipsis for S3 method compatibility |
this function print key elements of a gwlest
object
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)
myst.est <- gwl_bw_estimation(x.var = predictors,
y.var = y_value,
dist.mat = distance_matrix,
adaptive = TRUE,
adptbwd.thresh = 0.5,
kernel = "bisquare",
alpha = 1,
progress = TRUE,
n=10,
nfolds = 5)
myst.est
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.