View source: R/ggm_compare_bf.default.R
summary.ggm_compare_explore | R Documentation |
ggm_compare_explore
ObjectsSummarize the posterior hypothesis probabilities
## S3 method for class 'ggm_compare_explore'
summary(object, col_names = TRUE, ...)
object |
An object of class |
col_names |
Logical. Should the summary include the column names (default is |
... |
Currently ignored. |
An object of class summary.ggm_compare_explore
ggm_compare_explore
# 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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.