powered by
summary.var_estimate
Visualize the posterior distributions of each partial correlation and regression coefficient.
# S3 method for summary.var_estimate plot(x, color = "black", size = 2, width = 0, param = "all", order = TRUE, ...)
A list of ggplot objects.
ggplot
An object of class summary.var_estimate
Character string. The color for the error bars. (defaults to "black").
"black"
Numeric. The size for the points (defaults to 2).
2
Numeric. The width of error bar ends (defaults to 0).
0
Character string. Which parameters should be plotted ? The options are pcor, beta, or all (default).
pcor
beta
all
Logical. Should the relations be ordered by size (defaults to TRUE) ?
TRUE
Currently ignored
# \donttest{ # data Y <- subset(ifit, id == 1)[,-1] # fit model with alias (var_estimate also works) fit <- var_estimate(Y, progress = FALSE) plts <- plot(summary(fit)) plts$pcor_plt # }
Run the code above in your browser using DataLab