polars get-ordinal
for dataframe
Gets ordinal from date.
This command requires a plugin
The polars get-ordinal
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 get-ordinal {flags}
Input/output types:
input | output |
---|---|
any | any |
Examples
Returns ordinal from a date
> let dt = ('2020-08-04T16:39:18+00:00' | into datetime --timezone 'UTC');
let df = ([$dt $dt] | polars into-df);
$df | polars get-ordinal
╭───┬─────╮
│ # │ 0 │
├───┼─────┤
│ 0 │ 217 │
│ 1 │ 217 │
╰───┴─────╯