nushell/crates/nu-cmd-dataframe/src/dataframe
Stefan Holderbach 112306aab5
Revert "Adding support for Polars structs" (#11171)
Reverts nushell/nushell#10943

The current implementation of `arr_to_value` is unsound, as it allows
casts of arbitrary data to arbitrary types without being marked
`unsafe`.
The full safety requirements to perform both the cast and the following
unchecked access are not as clear that a simple change of `fn
arr_to_value` to `unsafe fn arr_to_value` could be blessed without
further investigation.

cc @ayax79
2023-11-29 16:33:27 +01:00
..
eager Convert FileNotFoundCustom to named fields (#11123) 2023-11-21 17:30:21 -06: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 Revert "Adding support for Polars structs" (#11171) 2023-11-29 16:33:27 +01: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