polars integer for dataframe
Converts a string column into a integer column
This command requires a plugin
The polars integer command resides in the polars plugin. To use this command, you must install and register nu_plugin_polars. See the Plugins chapter in the book for more information.
Signature
> polars integer {flags} (base) (dtype)
Flags
--strict, -s: Raises an error as opposed to converting to null
Parameters
base: An integer or expression representing the base (radix) of the number system (default is 10)dtype: Data type to cast to (defaults is i64)
Input/output types:
| input | output |
|---|---|
| polars_expression | polars_expression |
Examples
Modifies strings to integer
> [[a b]; [1, '2']] | polars into-df | polars select (polars col b | polars integer) | polars collect
╭───┬───╮
│ # │ b │
├───┼───┤
│ 0 │ 2 │
╰───┴───╯