From fbbbde1489fb02acd130686f8d00c02238748aa4 Mon Sep 17 00:00:00 2001 From: Michael Angerman <1809991+stormasm@users.noreply.github.com> Date: Sun, 6 Mar 2022 11:05:55 -0800 Subject: [PATCH] Update the Readme for the dataframe directory (#4757) * update dataframe readme * update df readme --- crates/nu-command/src/dataframe/README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/crates/nu-command/src/dataframe/README.md b/crates/nu-command/src/dataframe/README.md index 2a50786a0e..593217ede6 100644 --- a/crates/nu-command/src/dataframe/README.md +++ b/crates/nu-command/src/dataframe/README.md @@ -1,3 +1,12 @@ -# nu-dataframe +# Dataframe -The nu-dataframe crate holds the definitions of the dataframe structures and commands +This dataframe directory holds all of the definitions of the dataframe data structures and commands. + +There are three sections of commands: + +* [eager](./eager) +* [series](./series) +* [values](./values) + +For more details see the +[Nushell book section on dataframes](https://www.nushell.sh/book/dataframes.html)