Summary Method for select.explore Objects

# S3 method for select.explore
summary(object, col_names = TRUE, ...)

Arguments

object

object of class select.explore.

col_names

Logical.

...

Currently ignored.

Value

a data frame including the posterior mean, standard deviation, and posterior hypothesis probabilities for each relation.

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
# }