cycquery.ops.ConditionBeforeDateΒΆ
- class ConditionBeforeDate(timestamp_col, timestamp, not_=False, binarize_col=None)[source]ΒΆ
Bases:
QueryOp
Filter rows based on a timestamp being before some date.
- Parameters:
Examples
>>> ConditionBeforeDate("col1", "2020-01-01")(table) >>> ConditionBeforeDate("col1", datetime.datetime(2020, 1, 1))(table) >>> ConditionBeforeDate("col1", "2020-01-01", binarize_col="col1_bool")(table)
Methods