Source code for retentioneering.eventstream.helpers.label_cropped_paths_helper
from __future__ import annotations
from typing import Optional, Tuple
from retentioneering.backend.tracker import track
from retentioneering.constants import DATETIME_UNITS
from ..types import EventstreamType
class LabelCroppedPathsHelperMixin:
[docs] @track( # type: ignore
tracking_info={"event_name": "helper"},
scope="label_cropped_paths",
event_value="combine",
allowed_params=[
"left_cutoff",
"right_cutoff",
],
)
def label_cropped_paths(
self,
left_cutoff: Optional[Tuple[float, DATETIME_UNITS]],
right_cutoff: Optional[Tuple[float, DATETIME_UNITS]],
) -> EventstreamType:
"""
A method of ``Eventstream`` class that creates new synthetic event(s) for each user based
on the timeout threshold: ``cropped_left`` and ``cropped_right``.
Parameters
----------
See parameters description
:py:class:`.LabelCroppedPaths`
Returns
-------
Eventstream
Input ``eventstream`` with new synthetic events.
"""
# avoid circular import
from retentioneering.data_processors_lib import (
LabelCroppedPaths,
LabelCroppedPathsParams,
)
from retentioneering.preprocessing_graph import PreprocessingGraph
from retentioneering.preprocessing_graph.nodes import EventsNode
p = PreprocessingGraph(source_stream=self) # type: ignore
params = dict(left_cutoff=left_cutoff, right_cutoff=right_cutoff)
node = EventsNode(processor=LabelCroppedPaths(params=LabelCroppedPathsParams(**params))) # type: ignore
p.add_node(node=node, parents=[p.root])
result = p.combine(node)
del p
return result