Visualize the posterior hypothesis probabilities.

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

Arguments

x

An object of class summary.select.explore

size

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

color

Character string. The Color for the points

...

Currently ignored

Value

A ggplot object

Examples

# \donttest{ # data Y <- bfi[,1:10] # fit model 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'
# edge set E <- select(fit, alternative = "exhaustive")
#> Error in select(fit, alternative = "exhaustive"): object 'fit' not found
#> Error in summary(E): object 'E' not found
# }