Visualize the posterior distributions for each partial correlation.

# S3 method for summary.explore
plot(x, color = "black", size = 2, width = 0, ...)

Arguments

x

An object of class summary.explore

color

Character string. The color for the error bars. (defaults to "black").

size

Numeric. The size for the points (defaults to 2).

width

Numeric. The width of error bar ends (defaults to 0 ).

...

Currently ignored

Value

A ggplot object

See also

Examples

# \donttest{ # note: iter = 250 for demonstrative purposes Y <- ptsd[,1:5] fit <- explore(Y, iter = 250, progress = FALSE)
#> Error in .Call("_BGGM_Theta_continuous", PACKAGE = "BGGM", Y = Y, iter = iter + 50, delta = delta, epsilon = eps, prior_only = 0, explore = 1, start = start, progress = progress): Incorrect number of arguments (8), expecting 10 for '_BGGM_Theta_continuous'
plt <- plot(summary(fit))
#> Error in summary(fit): object 'fit' not found
plt
#> Error in eval(expr, envir, enclos): object 'plt' not found
# }