plot.CCI | R Documentation |
Plot for CCI testing
## S3 method for class 'CCI'
plot(
x,
fill_color = "lightblue",
axis.text.x = 13,
axis.text.y = 13,
strip.text.x = 13,
strip.text.y = 13,
legend.text = 13,
legend.title = 13,
...
)
x |
Object of class 'CCI' |
fill_color |
Color for the histogram fill |
axis.text.x |
Size of x-axis text |
axis.text.y |
Size of y-axis text |
strip.text.x |
Size of x-axis strip text |
strip.text.y |
Size of y-axis strip text |
legend.text |
Size of legend text |
legend.title |
Size of legend title |
... |
Additional arguments to ggplot2 |
A plot of the null distribution and the test statistic in ggplot2 format.
print.CCI
, summary.CCI
,
plot.CCI
, perm.test
dat <- data.frame(x1 = rnorm(100), x2 = rnorm(100), y = rnorm(100))
cci <- CCI.test(y ~ x1 + x2, data = dat, interaction = FALSE)
plot(cci)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.