observer¶
Module that defines the Observer class
-
class
tasrif.processing_pipeline.observer.
Observer
¶ Interface specification of a observer The observation is invoked via the observe method and the data to be observed is passed to the observe method.
-
observe
(operator, *data_frames)¶ Function that performs checks on operator and data frame before observation
- Parameters
operator (ProcessingOperator) – Processing operator which is observed
*data_frames (list of pd.DataFrame) – Variable number of pandas dataframes to be observed
-