mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 00:54:56 +02:00
Series arithmetic (#3602)
* operations with series * contains operations with series * Checked division and masked operations
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user