Skip to content

Commit 0f8a78f

Browse files
committed
rename
1 parent c7f2848 commit 0f8a78f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/dataframes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ we can multiply columns `a` and `b` to create a new Series
632632
and we can start piping things in order to create new columns and dataframes
633633

634634
```nu
635-
> let df_9 = $df_8 | polars with-column ($df_8.a * $new_df.b / $new_df.new_col) --name my_sum
635+
> let df_9 = $df_8 | polars with-column ($df_8.a * $df_8.b / $df_8.new_col) --name my_sum
636636
> $df_9
637637
╭───┬───┬───┬─────────┬────────╮
638638
│ # │ a │ b │ new_col │ my_sum │

0 commit comments

Comments
 (0)