arundo / adtk

A Python toolkit for rule-based/unsupervised anomaly detection in time series
https://adtk.readthedocs.io
Mozilla Public License 2.0
1.09k stars 145 forks source link

It looks like I found a bug in the `__doc__` of the class `DoubleRollingAggregate` in the module `Transformers` #134

Closed neural-vector-machine closed 2 years ago

neural-vector-machine commented 2 years ago

In the the __doc__ of the class DoubleRollingAggregate in the module Transformers, the annotation of pramater center is If True, the current point is the **right** edge of right window; Otherwise, it is the right edge of **left** window. originally. Afater reading the code line by line, to the best of my knowledge, it should be If True, the current point is the **left** edge of right window; Otherwise, it is the right edge of **right** window.. Am I misinterpreting this, or its the little mistake of the __doc__?