We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7f2848 commit 0f8a78fCopy full SHA for 0f8a78f
book/dataframes.md
@@ -632,7 +632,7 @@ we can multiply columns `a` and `b` to create a new Series
632
and we can start piping things in order to create new columns and dataframes
633
634
```nu
635
-> let df_9 = $df_8 | polars with-column ($df_8.a * $new_df.b / $new_df.new_col) --name my_sum
+> let df_9 = $df_8 | polars with-column ($df_8.a * $df_8.b / $df_8.new_col) --name my_sum
636
> $df_9
637
╭───┬───┬───┬─────────┬────────╮
638
│ # │ a │ b │ new_col │ my_sum │
0 commit comments