Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Update expressions.js
Browse files Browse the repository at this point in the history
I found a tiny typo.
  • Loading branch information
Taiki Komoda authored Jul 8, 2023
1 parent d5decdd commit 2278e6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/node/getting-started/expressions.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ console.log(df2);
// --8<-- [start:groupby2]
df2
.groupBy("y")
.agg(pl.col("*").sum().alias("count"), pl.col("*").sum().alias("sum"));
.agg(pl.col("*").count().alias("count"), pl.col("*").sum().alias("sum"));
// --8<-- [end:groupby2]

// --8<-- [start:combine]
Expand Down

0 comments on commit 2278e6f

Please sign in to comment.