mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
Removed list from dataframe command signatures (#3713)
* Type in command description * filter name change * Clean column name * Clippy error and updated polars version * Lint correction in file * CSV Infer schema optional * Correct float operations * changes in series castings to allow other types * Clippy error correction * Removed lists from command signatures * Added not command for series
This commit is contained in:
@ -268,7 +268,7 @@ pub fn create_default_context(interactive: bool) -> Result<EvaluationContext, Bo
|
||||
#[cfg(feature = "dataframe")]
|
||||
context.add_commands(vec![
|
||||
whole_stream_command(DataFrame),
|
||||
whole_stream_command(DataFrameLoad),
|
||||
whole_stream_command(DataFrameOpen),
|
||||
whole_stream_command(DataFrameList),
|
||||
whole_stream_command(DataFrameGroupBy),
|
||||
whole_stream_command(DataFrameAggregate),
|
||||
@ -279,8 +279,8 @@ pub fn create_default_context(interactive: bool) -> Result<EvaluationContext, Bo
|
||||
whole_stream_command(DataFrameSelect),
|
||||
whole_stream_command(DataFrameDTypes),
|
||||
whole_stream_command(DataFrameDummies),
|
||||
whole_stream_command(DataFrameHead),
|
||||
whole_stream_command(DataFrameTail),
|
||||
whole_stream_command(DataFrameFirst),
|
||||
whole_stream_command(DataFrameLast),
|
||||
whole_stream_command(DataFrameSlice),
|
||||
whole_stream_command(DataFrameMelt),
|
||||
whole_stream_command(DataFramePivot),
|
||||
@ -315,6 +315,7 @@ pub fn create_default_context(interactive: bool) -> Result<EvaluationContext, Bo
|
||||
whole_stream_command(DataFrameIsIn),
|
||||
whole_stream_command(DataFrameShift),
|
||||
whole_stream_command(DataFrameSet),
|
||||
whole_stream_command(DataFrameNot),
|
||||
]);
|
||||
|
||||
#[cfg(feature = "clipboard-cli")]
|
||||
|
Reference in New Issue
Block a user