Module polars_plan::dsl

source ·
Expand description

Domain specific language for the Lazy API.

Re-exports§

Modules§

Structs§

Enums§

  • Expressions that can be used in various contexts. Queries consist of multiple expressions. When using the polars lazy API, don’t construct an Expr directly; instead, create one using the functions in the polars_lazy::dsl module. See that module’s docs for more info.

Traits§

Functions§

  • Apply a function/closure over the groups of multiple columns. This should only be used in a group_by aggregation.
  • Compute op(l, r) (or equivalently l op r). l and r must have types compatible with the Operator.
  • First column in a DataFrame.
  • Last column in a DataFrame.
  • Return the number of rows in the context.
  • Apply a function/closure over multiple columns once the logical plan get executed.
  • Apply a function/closure over multiple columns once the logical plan get executed.
  • Nth column in a DataFrame.
  • Start a when-then-otherwise expression.

Type Aliases§