nushell/crates/nu-command/src/dataframe
Aron Nopanen d08212409f
Support Arrow IPC file format with dataframes (#6548)
* Add support for Arrow IPC file format

Add support for Arrow IPC file format to dataframes commands. Support
opening of Arrow IPC-format files with extension '.arrow' or '.ipc' in
the open-df command. Add a 'to arrow' command to write a dataframe to
Arrow IPC format.

* Add unit test for open-df on Arrow

* Add -t flag to open-df command

Add a `--type`/`-t` flag to the `open-df` command, to explicitly specify
the type of file being used. Allowed values are the same at the set of
allowed file extensions.
2022-09-12 18:30:20 -05:00
..
eager Support Arrow IPC file format with dataframes (#6548) 2022-09-12 18:30:20 -05:00
expressions Polars upgrade 0.23 (#6303) 2022-08-12 13:10:36 +01:00
lazy Polars upgrade 0.23 (#6303) 2022-08-12 13:10:36 +01:00
series Polars upgrade 0.23 (#6303) 2022-08-12 13:10:36 +01:00
values Clippy fix for Rust 1.63 (#6299) 2022-08-11 11:54:54 -05:00
mod.rs Lazy dataframes (#5546) 2022-05-16 08:27:43 +01:00
README.md Update the Readme for the dataframe directory (#4757) 2022-03-06 11:05:55 -08:00
test_dataframe.rs Split merging of parser delta and stack environment (#6005) 2022-07-14 17:09:27 +03:00
utils.rs Lazy dataframes (#5546) 2022-05-16 08:27:43 +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