-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @mo-abodas, I was the person who wrote this preprocessor, and I think I know where your issue is coming from. The preprocessor uses the time stamps of the input cube. I'm assuming, you are using monthly data to generate the cube. Now, in the default order of the preprocessor functions (which you are using)
Hope it solves your issue, if not, please let me know! |
Beta Was this translation helpful? Give feedback.
Hi @mo-abodas, I was the person who wrote this preprocessor, and I think I know where your issue is coming from. The preprocessor uses the time stamps of the input cube. I'm assuming, you are using monthly data to generate the cube. Now, in the default order of the preprocessor functions (which you are using)
rolling_window_statistics
comes beforeannual_statistics
andarea_statistics
, so you basically end up doing therolling_window_statitics
on the monthly data, which is "ish" equivalent to the annual statistics and that's why you don't see much difference. At the lower plot, you are usingrolling_window_statistics
on the annual data, so you are getting the desired smoothing. You can ob…