nushell/crates/nu_plugin_polars/src/dataframe
Jack Wright 1d6ac16530
polars into-df struct fix (#13977)
# Description
This fixes an issue with converting to a dataframe when specifying a
struct in the schema. Things like the following now work correctly:
```nushell
 [[foo bar]; [{a: "a_0", b:"b_0"} 1] [{a: "a_1", b: "b_1" } 2]] | polars into-df -s {foo: {a: str, b: str}, bar: u8}
```
2024-10-02 05:59:14 -05:00
..
command polars into-df struct fix (#13977) 2024-10-02 05:59:14 -05:00
values polars into-df struct fix (#13977) 2024-10-02 05:59:14 -05:00
mod.rs Polars command reorg (#13798) 2024-09-06 13:46:37 -07:00
README.md Move dataframes support to a plugin (#12220) 2024-04-09 19:31:43 -05:00
utils.rs Move dataframes support to a plugin (#12220) 2024-04-09 19:31:43 -05: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