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 0c05e46 commit 6382783Copy full SHA for 6382783
lectures/polars.md
@@ -397,7 +397,7 @@ df.with_columns([
397
.then(None) # set the value to null
398
.otherwise(pl.col('POP')) # otherwise keep the existing value
399
.alias('POP'), # update the POP column
400
- (pl.col('XRAT') / 10).alias('XRAT') # using the XRAT column, divide the value by 10 and update the column in-place
+ (pl.col('XRAT') / 10).alias('XRAT') # update XRAT in-place
401
])
402
```
403
0 commit comments