powered by
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.
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))
Run the code above in your browser using DataLab