Description Usage Format Source Examples
We consider data on river flow rates collected by volunteers of the Pierce Conservation District.
1 |
A data frame with 31 rows and 3 variables.
Location where measurments were taken.
Date measurements were taken.
Flow rate of the river in cubic feet per second.
Pierce County Water Data Viewer
1 2 3 4 5 6 7 8 9 | boxplot(flow~site, data = flow_rates, main="River Flow Rates",
xlab = "Site", ylab = expression(paste("Flow (ft"^3*"/s)")))
plot(flow_rates$date, flow_rates$flow, col = as.factor(flow_rates$site),
main = "Flow Rates Over Time", xlab = "Date",
ylab = expression(paste("Flow (ft"^3*"/s)")))
legend("topright", title = "Site",
legend = c("Wildwood Creek Spring", "Silver Creek",
"Clarks Creek", "Leach Creek"), fill = c("Blue","Green","Black","Red"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.