Description Usage Format Source Examples
Flow data from Boulder Waste Water Treatment Plant with the goal of predicting phosphorous in the effluent flow.
1 |
An object of class "list"
with seven data frames
of flow data, phosphorous measurement, and grab sample results.
Daily flow data averages
Daily chemical dosing
Hourly flow data
Daily aqueous lab and solids lab
Hourly mixed liquor channel profile
Phosphorus in effluent
Daily totalized flows
Christopher Marks for the City of Boulder Water Resource Recovery Facility (BWRRF)
1 2 3 4 5 6 7 8 9 10 | #- Alum
dose <- boulder_phos[[2]]
alum <- dose[which(dose$coagulant == "Alum"),]
plot(alum$Date, alum$solution_mass_lbs_day, type = "l",
main = "Alum Addition", ylab = "Mass", xlab = "Date")
#- Phosphorus
phos <- boulder_phos[[6]]
plot(phos$Date.Time, phos$op_conc_mg_p_l, type = "l", ylim = c(0, 6))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.