krangl / krangl / filter

filter

fun DataFrame.filter(predicate: ExpressionContext.(ExpressionContext) -> List<Boolean?>): DataFrame

Filter the rows of a table with a single predicate.

fun DataFrame.filter(vararg predicates: DataFrame.(DataFrame) -> List<Boolean>): DataFrame

AND-filter a table with different filters.