I'm trying to build an ARIMA model which models flow in sewer pipes (Here is a snippet of ts: https://imgur.com/CuEzCNU).
The goal is to specifically model rapid increase in flow though the pipes as they are more critical than the seasonal values which are much more abundant and might have a negative effect on the model. Thus, my idea is to train a model only on these rare events and hopefully get a model that will model other similar events well when tested. However, I'm a little confused on how one would do that. I've tried smoothening out the TS and extracting the event in which runoff increases a lot to a vector and was going to train on that but currently, I'm having doubt on that approach.
Any ideas are well appreciated