plot.bayeslincom {BBcor} | R Documentation |
compare
See plot.bayeslincom
## S3 method for class 'bayeslincom'
plot(
x,
point_col = "black",
hist_col = "black",
hist_fill = "gray",
bar_col = "steelblue",
bins = 30,
display_comb_strings = TRUE,
...
)
x |
An object of class |
point_col |
Color for point indicating mean of posterior |
hist_col |
Color for histogram edges |
hist_fill |
Color for histogram bars |
bar_col |
Color of bar for credible interval |
bins |
Number of bins |
display_comb_strings |
If |
... |
Currently ignored |
An object of class ggplot
Y <- mtcars[, 1:3]
bb <- bbcor(Y)
bb_compare <- compare("mpg--cyl > mpg--disp",
obj = bb,
cred = 0.90,
rope = c(-0.1, 0.1))
plot(bb_compare)