summary.GPModel | R Documentation |
GPModel
Summary for a GPModel
## S3 method for class 'GPModel'
summary(object, ...)
object |
a |
... |
(not used, ignore this, simply here that there is no CRAN warning) |
Summary of a (fitted) GPModel
Fabio Sigrist
# See https://github.com/fabsig/GPBoost/tree/master/R-package for more examples
data(GPBoost_data, package = "gpboost")
# Add intercept column
X1 <- cbind(rep(1,dim(X)[1]),X)
X_test1 <- cbind(rep(1,dim(X_test)[1]),X_test)
#--------------------Grouped random effects model: single-level random effect----------------
gp_model <- fitGPModel(group_data = group_data[,1], y = y, X = X1,
likelihood="gaussian", params = list(std_dev = TRUE))
summary(gp_model)
#--------------------Gaussian process model----------------
gp_model <- fitGPModel(gp_coords = coords, cov_function = "exponential",
likelihood="gaussian", y = y, X = X1, params = list(std_dev = TRUE))
summary(gp_model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.