plot_multihistogram | R Documentation |
If there are multiple data sets, it might be useful to plot them on a histogram together and look at the t.test results between distributions.
plot_multihistogram(
data,
log = FALSE,
binwidth = NULL,
bins = NULL,
colors = NULL
)
data |
Dataframe of lots of pretty numbers, this also accepts lists. |
log |
Plot the data on the log scale? |
binwidth |
Set a static bin width with an unknown # of bins? If neither of these are provided, then bins is set to 500, if both are provided, then bins wins. |
bins |
Set a static # of bins of an unknown width? |
colors |
Change the default colors of the densities? |
List of the ggplot histogram and some statistics describing the distributions.
[stats::pairwise.t.test()] [ggplot2]
## Not run:
kittytime = plot_multihistogram(df)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.