This method plots either daily time series data from HYDAT or realtime data from the datamart. These plots are intended to be convenient and quick methods to visualize hydrometric data.
Usage
# S3 method for class 'hy'
plot(x = NULL, ...)
# S3 method for class 'realtime'
plot(x = NULL, Parameter = c("Flow", "Level"), ...)
Examples
if (FALSE) { # \dontrun{
# One station
fraser <- hy_daily_flows("08MF005")
plot(fraser)
} # }
if (FALSE) { # \dontrun{
# One station
fraser_realtime <- realtime_dd("08MF005")
plot(fraser_realtime)
} # }