polars.quantile# polars.quantile( column: str, quantile: float | Expr, interpolation: RollingInterpolationMethod = 'nearest', ) → Expr[source]# Syntactic sugar for pl.col("foo").quantile(..). Parameters: columnColumn name. quantileQuantile between 0.0 and 1.0. interpolation{‘nearest’, ‘higher’, ‘lower’, ‘midpoint’, ‘linear’}Interpolation method.