Learn R Programming

GeoAdjust (version 2.0.1)

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

Description

Prints the output of estimateModel() function.

Usage

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

Value

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

interval lengths.

Arguments

x

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

...

not used

Examples

Run this code
# \donttest{
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)
# }

Run the code above in your browser using DataLab