The following function:
hydrograph(df, streamflow = df$`Q (m3/s)` , timeSeries = df$`Sampling time`,
precip = df$`Rainfall mm`, begin = 1,
endindex = length(streamflow), P.units = "mm", S.units = "m3/s",
stream.label = "Streamflow")
This function allows me to plot certain time ranges using begin and endindex. My problem is that I want to plot from the 13/07/2021 00:15:00 to 27/07/2021 18:00:00 (this date's range is the length of the streamflow data) and I don't seem to get it right. I have tried.
a) endindex = length(streamflow)
b) begin = "13/07/2021 00:15:00", endindex = "27/07/2021 18:00:00"