mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 14:45:56 +02:00
Remove dependencies (#3853)
* nuframe in its own type in UntaggedValue * Removed eager dataframe from enum * Dataframe created from list of values * Corrected order in dataframe columns * Returned tag from stream collection * Removed series from dataframe commands * Arithmetic operators * forced push * forced push * Replace all command * String commands * appending operations with dfs * Testing suite for dataframes * Unit test for dataframe commands * improved equality for dataframes * moving all dataframe operations to protocol
This commit is contained in:
@ -5,7 +5,7 @@ use nu_protocol::{Primitive, ShellTypeName, UntaggedValue, Value};
|
||||
use std::ops::Not;
|
||||
|
||||
#[cfg(feature = "dataframe")]
|
||||
use nu_data::dataframe::{compute_between_dataframes, compute_series_single_value};
|
||||
use nu_protocol::dataframe::{compute_between_dataframes, compute_series_single_value};
|
||||
|
||||
pub fn apply_operator(
|
||||
op: Operator,
|
||||
|
Reference in New Issue
Block a user