nabu.stitching.stitcher.y_stitcher
[docs]
module
nabu.stitching.stitcher.y_stitcher
1
2
3
4
5
6
7
8
9
10
11
12
13 | from nabu.stitching.stitcher.pre_processing import PreProcessingStitching
from .dumper import PreProcessingStitchingDumper
class PreProcessingYStitcher(
PreProcessingStitching,
dumper_cls=PreProcessingStitchingDumper,
axis=1,
):
@property
def serie_label(self) -> str:
return "y-serie"
|