nushell/crates/nu-cmd-dataframe/src/dataframe
Jack Wright fe92051bb3
Adding support for Polars structs (#10943)
Provides support for reading Polars structs. This allows opening of
supported files (jsonl, parquet, etc) that contain rows with structured
data.

The following attached json lines
file([receipts.jsonl.gz](https://github.com/nushell/nushell/files/13311476/receipts.jsonl.gz))
contains a customer column with structured data. This json lines file
can now be loaded via `dfr open` and will render as follows:

<img width="525" alt="Screenshot 2023-11-09 at 10 09 18"
src="https://github.com/nushell/nushell/assets/56345/4b26ccdc-c230-43ae-a8d5-8af88a1b72de">


This also addresses some cleanup of date handling and utilizing
timezones where provided.

This pull request only addresses reading data from polars structs. I
will address converting nushell data to polars structs in a future
request as this change is large enough as it is.

---------

Co-authored-by: Jack Wright <jack.wright@disqo.com>
2023-11-09 19:00:59 -06:00
..
eager Improve case insensitivity consistency (#10884) 2023-11-08 23:58:54 +01:00
expressions Convert ShellError::UnsupportedInput to named fields (#10971) 2023-11-07 23:25:32 +01:00
lazy Update polars to 0.33 (#10672) 2023-10-11 21:28:18 +02:00
series Convert ShellError::UnsupportedInput to named fields (#10971) 2023-11-07 23:25:32 +01:00
values Adding support for Polars structs (#10943) 2023-11-09 19:00:59 -06:00
mod.rs Add a stub dfr command (#10683) 2023-10-11 17:51:20 +02:00
README.md move dataframe commands to nu-cmd-dataframe (#9241) 2023-05-19 10:56:08 -07:00
stub.rs Add a stub dfr command (#10683) 2023-10-11 17:51:20 +02:00
test_dataframe.rs Fix a couple clippy warnings (#9936) 2023-08-07 06:23:11 +12:00
utils.rs Make FromValue take owned Values (#10900) 2023-10-31 19:47:00 +01:00

Dataframe

This dataframe directory holds all of the definitions of the dataframe data structures and commands.

There are three sections of commands:

For more details see the Nushell book section on dataframes