View source: R/ggm_compare_ppc.default.R
plot.ggm_compare_ppc | R Documentation |
ggm_compare_ppc
ObjectsPlot the predictive check with ggridges
## S3 method for class 'ggm_compare_ppc'
plot(
x,
critical = 0.05,
col_noncritical = "#84e184A0",
col_critical = "red",
point_size = 2,
...
)
x |
An object of class |
critical |
Numeric. The 'significance' level
(defaults to |
col_noncritical |
Character string. Fill color for the non-critical region
(defaults to |
col_critical |
Character string. Fill color for the critical region
(defaults to |
point_size |
Numeric. The point size for the observed score
(defaults to |
... |
Currently ignored. |
An object (or list of objects) of class ggplot
.
See ggridges for many examples.
ggm_compare_ppc
# data
Y <- bfi
#############################
######### global ############
#############################
# males
Ym <- subset(Y, gender == 1,
select = - c(gender, education))
# females
Yf <- subset(Y, gender == 2,
select = - c(gender, education))
global_test <- ggm_compare_ppc(Ym, Yf,
iter = 250,
progress = FALSE)
plot(global_test)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.