Dataframe commands (#3502)

* Sample command

* Join command with checks

* More dataframes commands

* Groupby and aggregate commands

* Missing feature dataframe flag

* Renamed file

* New commands for dataframes

* error parser and df reference

* filter command for dataframes

* removed name from nu_dataframe

* commands to save to parquet and csv
This commit is contained in:
Fernando Herrera
2021-06-03 07:23:14 +01:00
committed by GitHub
parent fd5da62c66
commit 5537dce3cc
30 changed files with 1591 additions and 470 deletions

View File

@ -11,9 +11,9 @@ use std::ops::Range;
/// Used to represent the value of an input file.
#[derive(Clone)]
pub struct Text {
text: String,
start: usize,
end: usize,
pub text: String,
pub start: usize,
pub end: usize,
}
impl Text {