dfr get-hour for dataframe

Gets hour from date.

WARNING

Dataframe commands were not shipped in the official binaries by default, you have to build it with --features=dataframe flag

Signature

> dfr get-hour {flags}

Input/output types:

inputoutput
anyany

Examples

Returns hour from a date

> let dt = ('2020-08-04T16:39:18+00:00' | into datetime --timezone 'UTC');
    let df = ([$dt $dt] | dfr into-df);
    $df | dfr get-hour
╭───┬────╮
 # │ 0  │
├───┼────┤
 0  16 
 1  16 
╰───┴────╯