abacusai.forecasting_monitor_summary ==================================== .. py:module:: abacusai.forecasting_monitor_summary Classes ------- .. autoapisummary:: abacusai.forecasting_monitor_summary.ForecastingMonitorSummary Module Contents --------------- .. py:class:: ForecastingMonitorSummary(client, predictionTimestampCol=None, predictionTargetCol=None, trainingTimestampCol=None, trainingTargetCol=None, predictionItemId=None, trainingItemId=None, forecastFrequency=None, trainingTargetAcrossTime={}, predictionTargetAcrossTime={}, actualsHistogram={}, predictionsHistogram={}, trainHistoryData={}, predictHistoryData={}, targetDrift={}, historyDrift={}) Bases: :py:obj:`abacusai.return_class.AbstractApiClass` Forecasting Monitor Summary of the latest version of the data. :param client: An authenticated API Client instance :type client: ApiClient :param predictionTimestampCol: Feature in the data that represents the timestamp column. :type predictionTimestampCol: str :param predictionTargetCol: Feature in the data that represents the target. :type predictionTargetCol: str :param trainingTimestampCol: Feature in the data that represents the timestamp column. :type trainingTimestampCol: str :param trainingTargetCol: Feature in the data that represents the target. :type trainingTargetCol: str :param predictionItemId: Feature in the data that represents the item id. :type predictionItemId: str :param trainingItemId: Feature in the data that represents the item id. :type trainingItemId: str :param forecastFrequency: Frequency of data, could be hourly, daily, weekly, monthly, quarterly or yearly. :type forecastFrequency: str :param trainingTargetAcrossTime: Data showing average, p10, p90, median sales across time :type trainingTargetAcrossTime: ForecastingAnalysisGraphData :param predictionTargetAcrossTime: Data showing average, p10, p90, median sales across time :type predictionTargetAcrossTime: ForecastingAnalysisGraphData :param actualsHistogram: Data showing actuals histogram :type actualsHistogram: ForecastingAnalysisGraphData :param predictionsHistogram: Data showing predictions histogram :type predictionsHistogram: ForecastingAnalysisGraphData :param trainHistoryData: Data showing length of history distribution :type trainHistoryData: ForecastingAnalysisGraphData :param predictHistoryData: Data showing length of history distribution :type predictHistoryData: ForecastingAnalysisGraphData :param targetDrift: Data showing drift of the target for all drift types: distance (KL divergence), js_distance, ws_distance, ks_statistic, psi, csi, chi_square :type targetDrift: FeatureDriftRecord :param historyDrift: Data showing drift of the history for all drift types: distance (KL divergence), js_distance, ws_distance, ks_statistic, psi, csi, chi_square :type historyDrift: FeatureDriftRecord .. py:attribute:: prediction_timestamp_col :value: None .. py:attribute:: prediction_target_col :value: None .. py:attribute:: training_timestamp_col :value: None .. py:attribute:: training_target_col :value: None .. py:attribute:: prediction_item_id :value: None .. py:attribute:: training_item_id :value: None .. py:attribute:: forecast_frequency :value: None .. py:attribute:: training_target_across_time .. py:attribute:: prediction_target_across_time .. py:attribute:: actuals_histogram .. py:attribute:: predictions_histogram .. py:attribute:: train_history_data .. py:attribute:: predict_history_data .. py:attribute:: target_drift .. py:attribute:: history_drift .. py:attribute:: deprecated_keys .. py:method:: __repr__() .. py:method:: to_dict() Get a dict representation of the parameters in this class :returns: The dict value representation of the class parameters :rtype: dict