print method for objects of class gpss
Usage
# S3 method for class 'gpss'
print(x)
Examples
library(gpss)
data(lalonde)
# categorical variables must be encoded as factors
dat <- transform(lalonde, race_ethnicity = factor(race_ethnicity))
# train and test sets
idx <- sample(seq_len(nrow(dat)), 500)
dat_train <- dat[idx, ]
dat_test <- dat[-idx, ]
# sample of data for speed
mod <- gpss(re78 ~ nsw + age + educ + race_ethnicity, data = dat_train)
print(mod)
#> gpss object contains information, including...
#> formula: re78 ~ nsw + age + educ + race_ethnicity
#> <environment: 0x13177fe08>
#> b (bandwidth): 5.220494
#> s2 (sigma squared): 0.3
#> mixed data (containing a categorical variable?): FALSE
#>
#> Other available information: posterior mean (scaled and original), posterior covariance (scaled and original), a kernel matrix of X, original values of Y and X, etc.
#>
#> For more detailed information, please use `summary(gpss object)`