summary.ggm_compare_explore function

Summary Method for ggm_compare_explore Objects

Summary Method for ggm_compare_explore Objects

Summarize the posterior hypothesis probabilities

## S3 method for class 'ggm_compare_explore' summary(object, col_names = TRUE, ...)

Arguments

  • object: An object of class ggm_compare_explore.
  • col_names: Logical. Should the summary include the column names (default is TRUE)? Setting to FALSE includes the column numbers (e.g., 1--2).
  • ...: Currently ignored.

Returns

An object of class summary.ggm_compare_explore

Examples

# note: iter = 250 for demonstrative purposes # data Y <- bfi[complete.cases(bfi),] # males and females Ymale <- subset(Y, gender == 1, select = -c(gender, education))[,1:10] Yfemale <- subset(Y, gender == 2, select = -c(gender, education))[,1:10] ########################## ### example 1: ordinal ### ########################## # fit model fit <- ggm_compare_explore(Ymale, Yfemale, type = "ordinal", iter = 250, progress = FALSE) # summary summ <- summary(fit) summ

See Also

ggm_compare_explore

  • Maintainer: Philippe Rast
  • License: GPL-2
  • Last published: 2024-12-22