summary.reslr_output {reslr}R Documentation

Produces summaries and convergence diagnostics for an object created with reslr_mcmc.

Description

A warning message will appear if the model has not been converge. If this appears the user is recommended to re-run the model and alter the reslr_mcmc function default iteration and MCMC settings. Also, it provides high-level summaries of the estimated parameters.

Usage

## S3 method for class 'reslr_output'
summary(object, ...)

Arguments

object

Output object from the reslr_mcmc

...

Not in use

Value

A list containing convergence diagnostics and parameter estimates for the output.

Examples


data <- NAACproxydata %>% dplyr::filter(Site == "Cedar Island")
input_data <- reslr_load(data = data)
jags_output <- reslr_mcmc(input_data = input_data, model_type = "eiv_slr_t")
summary(object = jags_output)

[Package reslr version 0.1.1 Index]