DataFrameFactory.

not_indexed

not_indexed(columns: ColumnsDef, filter_by: Optional[Union[Filter, list[Filter]]], on_execution_submitted: Optional[Callable[[Execution], None]], is_cancellable: bool, result_page_len: Optional[int]) -> pandas.DataFrame

Creates a data frame with columns created from metrics and or labels.

Parameters

nametypedescription
columnsColumnsDefDictionary mapping column name to its definition.
filter_byOptional[Union[Filter, list[Filter]]]Optionally specify filters to apply during computation on the server.
on_execution_submittedOptional[Callable[[Execution], None]]Callback to call when the execution was submitted to the backend.
is_cancellableboolWhether the execution should be cancelled when the connection is interrupted.
result_page_lenOptional[int]Optional page size for result pagination. Defaults to 1000. Larger values can improve performance for large result sets.

Returns

typedescription
pandas.DataFrameA DataFrame instance.