Series arithmetic (#3602)

* operations with series

* contains operations with series

* Checked division and masked operations
This commit is contained in:
Fernando Herrera
2021-06-10 22:39:51 +01:00
committed by GitHub
parent 1d7c909080
commit c4163c3621
13 changed files with 812 additions and 90 deletions

View File

@ -185,7 +185,7 @@ impl NuDataFrame {
}
pub fn to_rows(&self, from_row: usize, to_row: usize) -> Result<Vec<Value>, ShellError> {
let df = &self.as_ref();
let df = self.as_ref();
let column_names = df.get_column_names();
let mut values: Vec<Value> = Vec::new();