View source: R/fkruskal_test.R
| plot.f_kruskal_test | R Documentation |
Displays the density plot and/or boxplot stored in an f_kruskal_test
object. Plots are only available when the original call used plot = TRUE.
## S3 method for class 'f_kruskal_test'
plot(x, which = c("distributions", "Boxplot"), ...)
x |
An object of class |
which |
Character vector indicating which plots to show. Options are
|
... |
Additional arguments (currently ignored). |
Returns x invisibly.
result <- f_kruskal_test(Sepal.Width ~ Species, data = iris,
output_type = "default")
plot(result) # both plots
plot(result, which = "Boxplot") # boxplot only
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.