sktime.transformations.panel.truncation¶
-
class
sktime.transformations.panel.truncation.
TruncationTransformer
(lower=None, upper=None)[source]¶ Bases:
sktime.transformations.base._PanelToPanelTransformer
TruncationTransformer docstring
- Parameters
lower (int, optional (default=None) bottom range of the values to) –
truncate can also be used to truncate to a specific length
if None, will find the shortest sequence and use instead.
upper (int, optional (default=None) upper range, only required when) –
paired with lower. This is used to calculate the range between. exclusive.
if None, will truncate from 0 to the lower bound.