LazyFilterResult#
- class dataframely.filter_result.LazyFilterResult[source]#
Container for results of calling
Schema.filter()on a lazy frame.Methods:
Collect the results from the filter operation.
Attributes:
- collect_all(
- **kwargs: Any,
Collect the results from the filter operation.
Using this method is more efficient than individually calling
collect()on both theresultandfailureobjects as this method takes advantage of common subplan elimination.- Parameters:
kwargs – Keyword arguments passed directly to
polars.collect_all().- Returns:
The collected filter result.
Attention
Until pola-rs/polars#24129 is released, the performance advantage of this method is limited.
- failure: FailureInfo[S]#
Information about the rows that failed validation.
- result: LazyFrame[S]#
The rows that passed validation.