# how does nox vary by intervals of wind speed?
results <- binData(mydata, bin = "ws", uncer = "nox")
# easy to plot this using ggplot2
if (FALSE) {
library(ggplot2)
ggplot(results, aes(ws, mean, ymin = min, ymax = max)) +
geom_pointrange()
}
Run the code above in your browser using DataLab