Description Usage Arguments Value Examples
Flattens a var-result to a list of data.frames
1 | flatten_var(x, se = TRUE)
|
x |
a result of |
se |
if the standard errors should be reported |
a list of data.frames containing the estimates est
and the
p-values p-value
. If se = TRUE
, the standard errors are also
reported as se
.
1 2 3 4 5 6 7 | library(vars)
data(Canada)
res <- VAR(Canada, p = 2, type = "none")
summary(res)
flatten_var(res)
flatten_var(res, se = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.