salinity | R Documentation |
Data collected at three different water masses in the Bimini Lagoon, Bahamas.
salinity
A data frame with 30 rows and 2 variables.
Location where measurements were taken.
Salinity value in parts per thousand.
Till, R. (1974) Statistical Methods for the Earth Scientist: An Introduction. London: Macmillon, 104.
library(ggplot2)
library(broom)
ggplot(salinity, aes(x = salinity_ppt)) +
geom_dotplot() +
facet_wrap(~site_number, ncol = 1)
tidy(aov(salinity_ppt ~ site_number, data = salinity))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.