New take command (#3722)

* 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

* take command with args

* set with idx command
This commit is contained in:
Fernando Herrera
2021-07-05 00:46:53 +01:00
committed by GitHub
parent c94c87eec0
commit af2b2c668d
13 changed files with 319 additions and 57 deletions

View File

@ -315,6 +315,8 @@ pub fn create_default_context(interactive: bool) -> Result<EvaluationContext, Bo
whole_stream_command(DataFrameShift),
whole_stream_command(DataFrameSet),
whole_stream_command(DataFrameNot),
whole_stream_command(DataFrameTake),
whole_stream_command(DataFrameSetWithIdx),
]);
#[cfg(feature = "clipboard-cli")]