mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
All is a DataFrame (#3812)
* 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
This commit is contained in:
@ -287,7 +287,6 @@ pub fn create_default_context(interactive: bool) -> Result<EvaluationContext, Bo
|
||||
whole_stream_command(DataFramePivot),
|
||||
whole_stream_command(DataFrameWhere),
|
||||
whole_stream_command(DataFrameToDF),
|
||||
whole_stream_command(DataFrameToSeries),
|
||||
whole_stream_command(DataFrameToParquet),
|
||||
whole_stream_command(DataFrameToCsv),
|
||||
whole_stream_command(DataFrameSort),
|
||||
@ -321,6 +320,13 @@ pub fn create_default_context(interactive: bool) -> Result<EvaluationContext, Bo
|
||||
whole_stream_command(DataFrameSetWithIdx),
|
||||
whole_stream_command(DataFrameShape),
|
||||
whole_stream_command(DataFrameReplace),
|
||||
whole_stream_command(DataFrameReplaceAll),
|
||||
whole_stream_command(DataFrameStringLengths),
|
||||
whole_stream_command(DataFrameContains),
|
||||
whole_stream_command(DataFrameToLowercase),
|
||||
whole_stream_command(DataFrameToUppercase),
|
||||
whole_stream_command(DataFrameStringSlice),
|
||||
whole_stream_command(DataFrameConcatenate),
|
||||
]);
|
||||
|
||||
#[cfg(feature = "clipboard-cli")]
|
||||
|
Reference in New Issue
Block a user