Skip to content

Commit

Permalink
update rust binding
Browse files Browse the repository at this point in the history
  • Loading branch information
b-twice committed Aug 11, 2024
1 parent d9b9b4c commit cc5dc4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dataframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -895,8 +895,8 @@ impl JsDataFrame {
pub fn pivot_expr(
&self,
values: Vec<String>,
on: Vec<String>,
index: Vec<String>,
columns: Vec<String>,
aggregate_expr: Option<Wrap<polars::prelude::Expr>>,
maintain_order: bool,
sort_columns: bool,
Expand All @@ -908,8 +908,8 @@ impl JsDataFrame {
};
fun(
&self.df,
index,
Some(columns),
on,
Some(index),
Some(values),
sort_columns,
aggregate_expr.map(|e| e.0 as Expr),
Expand Down

0 comments on commit cc5dc4b

Please sign in to comment.