I have a time series of daily flow data. I am trying to decompose the ST to remove the trends and seasonalities. But when I use the decompose
function the seasonal chart appears a black blur.
QHE.ts <- ts(QUHE.z, freq = 365.25)
QHE.ts.decom <- decompose(QUHE.ts, type = "mult")
plot(QHE.ts)!
Hereisthedownloadlinkforthedata: link
Does anyone know how to handle this? I know there is seasonality in the flow because there are different periods, wet and dry during the year.