flow_rates | R Documentation |
Flow rates (mesured in cubic feet per second) of Clarks Creek, Leach Creek, Silver Creek, and Wildwood Creek Spring collected by volunteers of the Pierce Conservation District in the State of Washington in the US.
flow_rates
A data frame with 31 rows and 3 variables.
Location where measurements were taken.
Date measurements were taken.
Flow rate of the river in cubic feet per second.
Pierce County Water Data Viewer.
library(ggplot2)
# River flow rates by site
ggplot(flow_rates, aes(x = site, y = flow)) +
geom_boxplot() +
labs(
title = "River flow rates by site",
x = "Site",
y = expression(paste("Flow (ft"^3 * "/s)"))
)
# River flow rates over time
ggplot(flow_rates, aes(x = date, y = flow, color = site, shape = site)) +
geom_point(size = 2) +
labs(
title = "River flow rates over time",
x = "Date",
y = expression(paste("Flow (ft"^3 * "/s)")),
color = "Site", shape = "Site"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.