plot.summary.ggm_compare_estimate: Plot 'summary.ggm_compare_estimate' Objects

Description Usage Arguments Value See Also Examples

View source: R/ggm_compare_estimate.default.R

Description

Visualize the posterior distribution differences.

Usage

1
2
## S3 method for class 'summary.ggm_compare_estimate'
plot(x, color = "black", size = 2, width = 0, ...)

Arguments

x

An object of class ggm_compare_estimate.

color

Character string. The color of the points (defaults to "black").

size

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

width

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

...

Currently ignored.

Value

An object of class ggplot

See Also

ggm_compare_estimate

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
# note: iter = 250 for demonstrative purposes
# data
Y <- bfi

# males and females
Ymale <- subset(Y, gender == 1,
                select = -c(gender,
                            education))[,1:5]

Yfemale <- subset(Y, gender == 2,
                  select = -c(gender,
                              education))[,1:5]

# fit model
fit <- ggm_compare_estimate(Ymale,  Yfemale,
                            type = "ordinal",
                            iter = 250,
                            prior_sd = 0.25,
                            progress = FALSE)

plot(summary(fit))

BGGM documentation built on Aug. 20, 2021, 5:08 p.m.