abacusai.point_in_time_feature ============================== .. py:module:: abacusai.point_in_time_feature Classes ------- .. autoapisummary:: abacusai.point_in_time_feature.PointInTimeFeature Module Contents --------------- .. py:class:: PointInTimeFeature(client, historyTableName=None, aggregationKeys=None, timestampKey=None, historicalTimestampKey=None, lookbackWindowSeconds=None, lookbackWindowLagSeconds=None, lookbackCount=None, lookbackUntilPosition=None, expression=None, groupName=None) Bases: :py:obj:`abacusai.return_class.AbstractApiClass` A point-in-time feature description :param client: An authenticated API Client instance :type client: ApiClient :param historyTableName: The name of the history table. If not specified, the current table is used for a self-join. :type historyTableName: str :param aggregationKeys: List of keys to use for joining the historical table and performing the window aggregation. :type aggregationKeys: list[str] :param timestampKey: Name of feature which contains the timestamp value for the point-in-time feature. :type timestampKey: str :param historicalTimestampKey: Name of feature which contains the historical timestamp. :type historicalTimestampKey: str :param lookbackWindowSeconds: If window is specified in terms of time, the number of seconds in the past from the current time for the start of the window. :type lookbackWindowSeconds: float :param lookbackWindowLagSeconds: Optional lag to offset the closest point for the window. If it is positive, the start of the window is delayed. If it is negative, we are looking at the "future" rows in the history table. :type lookbackWindowLagSeconds: float :param lookbackCount: If window is specified in terms of count, the start position of the window (0 is the current row). :type lookbackCount: int :param lookbackUntilPosition: Optional lag to offset the closest point for the window. If it is positive, the start of the window is delayed by that many rows. If it is negative, we are looking at those many "future" rows in the history table. :type lookbackUntilPosition: int :param expression: SQL aggregate expression which can convert a sequence of rows into a scalar value. :type expression: str :param groupName: The group name this point-in-time feature belongs to. :type groupName: str .. py:attribute:: history_table_name :value: None .. py:attribute:: aggregation_keys :value: None .. py:attribute:: timestamp_key :value: None .. py:attribute:: historical_timestamp_key :value: None .. py:attribute:: lookback_window_seconds :value: None .. py:attribute:: lookback_window_lag_seconds :value: None .. py:attribute:: lookback_count :value: None .. py:attribute:: lookback_until_position :value: None .. py:attribute:: expression :value: None .. py:attribute:: group_name :value: None .. 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