Skip to main content
Version: 1.7.0

Filters

TableFrame.extract_as_columnsExtract a slice of rows from the table as a column-oriented dictionary.
TableFrame.extract_as_rowsExtract a slice of rows from the TableFrame as a list of dictionaries.
TableFrame.filterFilter the TableFrame based on the given predicates.
TableFrame.firstReturn a TableFrame with the first row.
TableFrame.first_rowReturn a tuple or dictionary with the first row, or None if no row.
TableFrame.headReturn a TableFrame with the first n rows.
TableFrame.lastReturn a TableFrame with the last row.
TableFrame.last_rowReturn a tuple or dictionary with the last row, or None if no row.
TableFrame.limitReturn a TableFrame with the first n rows.
TableFrame.sliceReturn a TableFrame with a slice of the original TableFrame
TableFrame.tailReturn a TableFrame with the last n rows.
TableFrame.uniqueDeduplicate rows from the TableFrame.
Expr.filterApply a filter predicate to an expression.
Expr.sliceCompute a slice of the TableFrame for the specified columns.