print.tsnet_fit | R Documentation |
This method provides a summary of the Bayesian GVAR model fitted with stan_gvar
.
It prints general information about the model, including the estimation method and the number of chains and iterations
It also prints the posterior mean of the temporal and contemporaneous coefficients.
## S3 method for class 'tsnet_fit'
print(x, ...)
x |
A tsnet_fit object. |
... |
Additional arguments passed to the print method (currently not used). |
Prints a summary to the console.
# Load example data
data(ts_data)
example_data <- ts_data[1:100,1:3]
# Fit the model
fit <- stan_gvar(example_data,
method = "sampling",
cov_prior = "IW",
n_chains = 2)
print(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.