print.res: Prints the output of estimateModel() function.

View source: R/print.res.R

print.resR Documentation

Prints the output of estimateModel() function.

Description

Prints the output of estimateModel() function.

Usage

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

Arguments

x

A list containing the model estimation output, returned by estimateModel() function.

...

not used

Value

Prints the model estimation results of class GAmodel as a table that shows the estimated model parameters and the corresponding 95 interval lengths.

Examples


path1 <- system.file("extdata", "exampleInputData.rda", package = "GeoAdjust")
load(path1)
results <- estimateModel(data = exampleInputData,
options = list(random = 1, covariates = 1), priors = list(beta = c(0,1),
range = 114, USpatial = 1, alphaSpatial = 0.05, UNugget = 1, alphaNug = 0.05), n.sims = 1000)
print(results)


GeoAdjust documentation built on Sept. 16, 2023, 1:06 a.m.