Skip to content

daft.functions.skew#

skew #

skew(expr: Expression) -> Expression

Calculates the skewness of the values from the expression.

Source code in daft/functions/agg.py
270
271
272
def skew(expr: Expression) -> Expression:
    """Calculates the skewness of the values from the expression."""
    return Expression._from_pyexpr(expr._expr.skew())