diff --git a/R/expr__expr.R b/R/expr__expr.R index 84348f54f..129beaa90 100644 --- a/R/expr__expr.R +++ b/R/expr__expr.R @@ -2712,7 +2712,10 @@ Expr_rolling_quantile = function( #' df_temporal #' #' df_temporal$with_columns( -#' rolling_row_quantile = pl$col("index")$rolling_quantile_by("date", window_size = "2h", quantile = 0.3) +#' rolling_row_quantile = pl$col("index")$rolling_quantile_by( +#' "date", +#' window_size = "2h", quantile = 0.3 +#' ) #' ) Expr_rolling_quantile_by = function( by, diff --git a/man/Expr_rolling_quantile_by.Rd b/man/Expr_rolling_quantile_by.Rd index 96f74ee73..1923d7188 100644 --- a/man/Expr_rolling_quantile_by.Rd +++ b/man/Expr_rolling_quantile_by.Rd @@ -69,6 +69,9 @@ df_temporal = pl$DataFrame( df_temporal df_temporal$with_columns( - rolling_row_quantile = pl$col("index")$rolling_quantile_by("date", window_size = "2h", quantile = 0.3) + rolling_row_quantile = pl$col("index")$rolling_quantile_by( + "date", + window_size = "2h", quantile = 0.3 + ) ) }