repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/index/set_with_idx.rs
crates/nu_plugin_polars/src/dataframe/command/index/set_with_idx.rs
use crate::{ PolarsPlugin, missing_flag_error, values::{CustomValueSupport, PolarsPluginType}, }; use super::super::super::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature,...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/index/arg_sort.rs
crates/nu_plugin_polars/src/dataframe/command/index/arg_sort.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, PolarsPluginType}, }; use super::super::super::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/index/mod.rs
crates/nu_plugin_polars/src/dataframe/command/index/mod.rs
mod arg_max; mod arg_min; mod arg_sort; mod arg_unique; mod set_with_idx; use crate::PolarsPlugin; use nu_plugin::PluginCommand; pub use arg_max::ArgMax; pub use arg_min::ArgMin; pub use arg_sort::ArgSort; pub use arg_unique::ArgUnique; pub use set_with_idx::SetWithIndex; pub(crate) fn index_commands() -> Vec<Box<dy...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/index/arg_unique.rs
crates/nu_plugin_polars/src/dataframe/command/index/arg_unique.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, PolarsPluginType}, }; use super::super::super::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; use...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/index/arg_max.rs
crates/nu_plugin_polars/src/dataframe/command/index/arg_max.rs
use crate::{PolarsPlugin, values::CustomValueSupport}; use crate::values::{Column, NuDataFrame, PolarsPluginType}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; use polars::prelude::{ArgAgg, ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/list/contains.rs
crates/nu_plugin_polars/src/dataframe/command/list/contains.rs
use crate::{ PolarsPlugin, values::{ CustomValueSupport, NuExpression, PolarsPluginObject, PolarsPluginType, cant_convert_err, }, }; use super::super::super::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, Lab...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/list/mod.rs
crates/nu_plugin_polars/src/dataframe/command/list/mod.rs
mod contains; use crate::PolarsPlugin; use nu_plugin::PluginCommand; pub use contains::ListContains; pub(crate) fn list_commands() -> Vec<Box<dyn PluginCommand<Plugin = PolarsPlugin>>> { vec![Box::new(ListContains)] }
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/integer/mod.rs
crates/nu_plugin_polars/src/dataframe/command/integer/mod.rs
mod to_decimal; mod to_integer; use crate::PolarsPlugin; use nu_plugin::PluginCommand; pub use to_decimal::ToDecimal; pub use to_integer::ToInteger; pub(crate) fn integer_commands() -> Vec<Box<dyn PluginCommand<Plugin = PolarsPlugin>>> { vec![Box::new(ToDecimal), Box::new(ToInteger)] }
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/integer/to_integer.rs
crates/nu_plugin_polars/src/dataframe/command/integer/to_integer.rs
use crate::{ PolarsPlugin, values::{ Column, CustomValueSupport, NuDataFrame, NuDataType, NuExpression, PolarsPluginObject, PolarsPluginType, cant_convert_err, }, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, Pipel...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/integer/to_decimal.rs
crates/nu_plugin_polars/src/dataframe/command/integer/to_decimal.rs
use crate::{ PolarsPlugin, values::{ Column, CustomValueSupport, NuDataFrame, NuExpression, PolarsPluginObject, PolarsPluginType, cant_convert_err, }, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, She...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/computation/math.rs
crates/nu_plugin_polars/src/dataframe/command/computation/math.rs
use crate::{PolarsPlugin, values::CustomValueSupport}; use crate::values::{ NuDataFrame, NuExpression, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signat...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/computation/mod.rs
crates/nu_plugin_polars/src/dataframe/command/computation/mod.rs
mod math; use crate::PolarsPlugin; use nu_plugin::PluginCommand; use math::ExprMath; pub(crate) fn computation_commands() -> Vec<Box<dyn PluginCommand<Plugin = PolarsPlugin>>> { vec![Box::new(ExprMath)] }
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/is_duplicated.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/is_duplicated.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, PolarsPluginType}, }; use super::super::super::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; use...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/is_unique.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/is_unique.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, PolarsPluginType}, }; use super::super::super::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; use...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/is_null.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/is_null.rs
use crate::{ PolarsPlugin, values::{ CustomValueSupport, NuExpression, PolarsPluginObject, PolarsPluginType, cant_convert_err, }, }; use super::super::super::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, Labe...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/otherwise.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/otherwise.rs
use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuExpression, NuWhen, NuWhenType}, values::{CustomValueSupport, PolarsPluginType}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Signature, Span, Syn...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/is_not_null.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/is_not_null.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, PolarsPluginObject, PolarsPluginType, cant_convert_err}, }; use super::super::super::values::{Column, NuDataFrame, NuExpression}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, Pipel...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/not.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/not.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, PolarsPluginType}, }; use super::super::super::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; use ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/expr_not.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/expr_not.rs
use crate::PolarsPlugin; use crate::dataframe::values::NuExpression; use crate::values::{ CustomValueSupport, NuDataFrame, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{Category, Example, LabeledError, PipelineData, Shell...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/when.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/when.rs
use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuExpression, NuWhen}, values::{CustomValueSupport, NuWhenType, PolarsPluginType}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Signature, Span, Syn...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/arg_true.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/arg_true.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, PolarsPluginType}, }; use super::super::super::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; use...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/mod.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/mod.rs
mod all_false; mod all_true; mod arg_true; mod expr_not; mod is_duplicated; mod is_in; mod is_not_null; mod is_null; mod is_unique; mod not; pub(crate) mod otherwise; mod set; mod when; use crate::PolarsPlugin; use nu_plugin::PluginCommand; pub use all_false::AllFalse; pub use arg_true::ArgTrue; pub use is_duplicated...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/all_true.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/all_true.rs
use crate::PolarsPlugin; use crate::values::{Column, CustomValueSupport, NuDataFrame, PolarsPluginType}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; #[derive(Clone)] pub struct AllTrue; im...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/all_false.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/all_false.rs
use crate::PolarsPlugin; use crate::values::{Column, CustomValueSupport, NuDataFrame, PolarsPluginType}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; #[derive(Clone)] pub struct AllFalse; i...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/set.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/set.rs
use crate::{ PolarsPlugin, missing_flag_error, values::{CustomValueSupport, PolarsPluginType}, }; use super::super::super::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature,...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/boolean/is_in.rs
crates/nu_plugin_polars/src/dataframe/command/boolean/is_in.rs
use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuExpression}, values::{CustomValueSupport, PolarsPluginObject, PolarsPluginType, cant_convert_err}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Sh...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/groupby.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/groupby.rs
use crate::{ PolarsPlugin, dataframe::values::{NuDataFrame, NuExpression, NuLazyFrame, NuLazyGroupBy}, values::{CustomValueSupport, PolarsPluginType}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signatur...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/count.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/count.rs
use crate::PolarsPlugin; use crate::dataframe::values::NuExpression; use crate::values::{ CustomValueSupport, NuDataFrame, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{Category, Example, LabeledError, PipelineData, Shell...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/quantile.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/quantile.rs
use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuLazyFrame}, values::{ CustomValueSupport, NuExpression, PolarsPluginObject, PolarsPluginType, cant_convert_err, }, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, La...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/median.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/median.rs
use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuLazyFrame}, values::{ CustomValueSupport, NuExpression, PolarsPluginObject, PolarsPluginType, cant_convert_err, }, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, La...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/horizontal.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/horizontal.rs
use crate::{ PolarsPlugin, values::{Column, CustomValueSupport, NuDataFrame, NuExpression, PolarsPluginType}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Spanned, SyntaxShape, Type, Val...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/cumulative.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/cumulative.rs
use crate::{PolarsPlugin, values::CustomValueSupport}; use crate::values::{ Column, NuDataFrame, NuExpression, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/sum.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/sum.rs
use crate::PolarsPlugin; use crate::dataframe::values::NuExpression; use crate::values::{ Column, CustomValueSupport, NuDataFrame, NuLazyFrame, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, Lab...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/max.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/max.rs
use crate::PolarsPlugin; use crate::dataframe::values::NuExpression; use crate::values::{ Column, CustomValueSupport, NuDataFrame, NuLazyFrame, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, Lab...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/min.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/min.rs
use crate::PolarsPlugin; use crate::dataframe::values::NuExpression; use crate::values::{ Column, CustomValueSupport, NuDataFrame, NuLazyFrame, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, Lab...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/over.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/over.rs
use crate::{ PolarsPlugin, dataframe::values::{NuDataFrame, NuExpression}, values::{CustomValueSupport, PolarsPluginObject, PolarsPluginType, cant_convert_err}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/mod.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/mod.rs
mod agg_groups; mod aggregate; mod count; mod cumulative; pub mod groupby; mod horizontal; mod implode; mod max; mod mean; mod median; mod min; mod n_null; mod n_unique; mod over; mod quantile; mod rolling; mod std; mod sum; mod value_counts; mod var; use crate::PolarsPlugin; use agg_groups::ExprAggGroups; use nu_plug...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/implode.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/implode.rs
use crate::PolarsPlugin; use crate::dataframe::values::NuExpression; use crate::values::{ CustomValueSupport, NuDataFrame, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{Category, Example, LabeledError, PipelineData, Shell...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/value_counts.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/value_counts.rs
use crate::PolarsPlugin; use crate::values::{CustomValueSupport, NuDataFrame, PolarsPluginType}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, }; use polars::df; use polars::prelude::Serie...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/n_null.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/n_null.rs
use crate::{PolarsPlugin, values::CustomValueSupport}; use crate::values::{Column, NuDataFrame, PolarsPluginType}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; #[derive(Clone)] pub struct N...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/mean.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/mean.rs
use crate::PolarsPlugin; use crate::dataframe::values::NuExpression; use crate::values::{ Column, CustomValueSupport, NuDataFrame, NuLazyFrame, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, Lab...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/std.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/std.rs
use crate::PolarsPlugin; use crate::values::{ Column, CustomValueSupport, NuLazyFrame, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use crate::{dataframe::values::NuExpression, values::NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Exampl...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/aggregate.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/aggregate.rs
use crate::{ PolarsPlugin, dataframe::values::{NuExpression, NuLazyFrame, NuLazyGroupBy}, values::{Column, CustomValueSupport, NuDataFrame, PolarsPluginType}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError,...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/agg_groups.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/agg_groups.rs
use crate::PolarsPlugin; use crate::dataframe::values::NuExpression; use crate::values::{ CustomValueSupport, NuDataFrame, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{Category, Example, LabeledError, PipelineData, Shell...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/n_unique.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/n_unique.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, PolarsPluginObject, PolarsPluginType, cant_convert_err}, }; use crate::values::{Column, NuDataFrame, NuExpression}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Shell...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/var.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/var.rs
use crate::PolarsPlugin; use crate::dataframe::values::NuExpression; use crate::values::{ Column, CustomValueSupport, NuDataFrame, NuLazyFrame, PolarsPluginObject, PolarsPluginType, cant_convert_err, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, Lab...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/aggregation/rolling.rs
crates/nu_plugin_polars/src/dataframe/command/aggregation/rolling.rs
use crate::values::{Column, NuDataFrame, PolarsPluginType}; use crate::{PolarsPlugin, values::CustomValueSupport}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Spanned, SyntaxShape, Value, }; use p...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/open.rs
crates/nu_plugin_polars/src/dataframe/command/core/open.rs
use crate::{ EngineWrapper, PolarsPlugin, command::core::resource::Resource, dataframe::values::NuSchema, values::{CustomValueSupport, NuDataFrame, NuLazyFrame, PolarsFileType, PolarsPluginType}, }; use log::debug; use nu_utils::perf; use nu_plugin::{EvaluatedCall, PluginCommand}; use nu_protocol::{ ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/resource.rs
crates/nu_plugin_polars/src/dataframe/command/core/resource.rs
use std::path::PathBuf; use crate::{PolarsPlugin, cloud::build_cloud_options}; use nu_path::expand_path_with; use nu_plugin::EngineInterface; use nu_protocol::{ShellError, Span, Spanned}; use polars::{ io::cloud::CloudOptions, prelude::{PlPath, PlPathRef, SinkTarget}, }; #[derive(Clone)] pub(crate) struct Res...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/shape.rs
crates/nu_plugin_polars/src/dataframe/command/core/shape.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; use crate::{PolarsPlugin, dataframe::values::Column, values::CustomValueSupport}; use crate::values::{NuDataFrame, PolarsPluginType}; #[derive(C...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/columns.rs
crates/nu_plugin_polars/src/dataframe/command/core/columns.rs
use crate::values::NuDataFrame; use crate::{PolarsPlugin, values::PolarsPluginType}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Value, }; #[derive(Clone)] pub struct ColumnsDF; impl PluginCommand f...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/to_schema.rs
crates/nu_plugin_polars/src/dataframe/command/core/to_schema.rs
use nu_plugin::PluginCommand; use nu_protocol::{Category, Example, ShellError, Signature, Span, Type, Value, record}; use crate::{ PolarsPlugin, values::{CustomValueSupport, NuSchema, PolarsPluginType}, }; pub struct ToSchema; impl PluginCommand for ToSchema { type Plugin = PolarsPlugin; fn name(&se...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/to_dtype.rs
crates/nu_plugin_polars/src/dataframe/command/core/to_dtype.rs
use nu_plugin::PluginCommand; use nu_protocol::{Category, Example, ShellError, Signature, Span, Type, Value}; use crate::{ PolarsPlugin, values::{CustomValueSupport, NuDataType, PolarsPluginType}, }; pub struct ToDataType; impl PluginCommand for ToDataType { type Plugin = PolarsPlugin; fn name(&self...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/schema.rs
crates/nu_plugin_polars/src/dataframe/command/core/schema.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, PolarsPluginObject, datatype_list}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Type, Value, record, }; #[derive(Clone)] pub struct ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/summary.rs
crates/nu_plugin_polars/src/dataframe/command/core/summary.rs
use crate::{PolarsPlugin, values::CustomValueSupport}; use crate::values::{Column, NuDataFrame, PolarsPluginType}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use polars::{ ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/mod.rs
crates/nu_plugin_polars/src/dataframe/command/core/mod.rs
mod cache; mod columns; mod open; mod profile; mod resource; mod save; mod schema; mod shape; mod summary; mod to_df; mod to_dtype; mod to_lazy; mod to_nu; mod to_repr; mod to_schema; pub use self::open::OpenDataFrame; use crate::PolarsPlugin; use nu_plugin::PluginCommand; pub use schema::SchemaCmd; pub use shape::Sha...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/to_nu.rs
crates/nu_plugin_polars/src/dataframe/command/core/to_nu.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Type, Value, record, }; use crate::{ PolarsPlugin, values::{CustomValueSupport, PolarsPluginObject, PolarsPluginType, cant_convert_...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/to_repr.rs
crates/nu_plugin_polars/src/dataframe/command/core/to_repr.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Type, Value, }; use crate::{ PolarsPlugin, values::{CustomValueSupport, NuLazyFrame, PolarsPluginType, cant_convert_err}, }; use crate::values::NuD...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/cache.rs
crates/nu_plugin_polars/src/dataframe/command/core/cache.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{Category, Example, LabeledError, PipelineData, Signature, Span}; use polars::df; use crate::{ PolarsPlugin, values::{CustomValueSupport, NuDataFrame, NuLazyFrame, PolarsPluginType}, }; pub struct LazyCache; impl PluginCommand f...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/to_df.rs
crates/nu_plugin_polars/src/dataframe/command/core/to_df.rs
use crate::{ PolarsPlugin, dataframe::values::NuSchema, values::{Column, CustomValueSupport, PolarsPluginType}, }; use crate::values::NuDataFrame; use log::debug; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Signature...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/to_lazy.rs
crates/nu_plugin_polars/src/dataframe/command/core/to_lazy.rs
use crate::{Cacheable, PolarsPlugin, dataframe::values::NuSchema, values::CustomValueSupport}; use crate::values::{NuDataFrame, NuLazyFrame, PolarsPluginType}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Signature, Span, SyntaxS...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/profile.rs
crates/nu_plugin_polars/src/dataframe/command/core/profile.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Value, record, }; use crate::{ PolarsPlugin, values::{ CustomValueSupport, NuDataFrame, NuLazyFrame, PolarsPluginObject, PolarsPluginType, ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/save/ndjson.rs
crates/nu_plugin_polars/src/dataframe/command/core/save/ndjson.rs
use std::{fs::File, io::BufWriter, path::PathBuf}; use log::debug; use nu_plugin::EvaluatedCall; use nu_protocol::ShellError; use polars::prelude::{JsonWriter, JsonWriterOptions, SerWriter, SinkOptions}; use crate::{ command::core::resource::Resource, values::{NuDataFrame, NuLazyFrame}, }; use super::polars_...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/save/arrow.rs
crates/nu_plugin_polars/src/dataframe/command/core/save/arrow.rs
use std::{fs::File, path::PathBuf}; use log::debug; use nu_plugin::EvaluatedCall; use nu_protocol::ShellError; use polars::prelude::{IpcWriter, IpcWriterOptions, SerWriter, SinkOptions}; use crate::{ command::core::resource::Resource, values::{NuDataFrame, NuLazyFrame}, }; use super::polars_file_save_error; ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/save/mod.rs
crates/nu_plugin_polars/src/dataframe/command/core/save/mod.rs
mod arrow; mod avro; mod csv; mod ndjson; mod parquet; use std::path::PathBuf; use crate::{ PolarsPlugin, command::core::resource::Resource, values::{PolarsFileType, PolarsPluginObject, PolarsPluginType, cant_convert_err}, }; use log::debug; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand};...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/save/csv.rs
crates/nu_plugin_polars/src/dataframe/command/core/save/csv.rs
use std::{fs::File, path::PathBuf}; use log::debug; use nu_plugin::EvaluatedCall; use nu_protocol::{ShellError, Spanned}; use polars::prelude::{CsvWriter, SerWriter, SinkOptions}; use polars_io::csv::write::{CsvWriterOptions, SerializeOptions}; use crate::{ command::core::resource::Resource, values::{NuDataFr...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/save/parquet.rs
crates/nu_plugin_polars/src/dataframe/command/core/save/parquet.rs
use std::{fs::File, path::PathBuf}; use log::debug; use nu_plugin::EvaluatedCall; use nu_protocol::ShellError; use polars::prelude::{ParquetWriteOptions, ParquetWriter, SinkOptions}; use crate::{ command::core::resource::Resource, values::{NuDataFrame, NuLazyFrame}, }; use super::polars_file_save_error; pub...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/core/save/avro.rs
crates/nu_plugin_polars/src/dataframe/command/core/save/avro.rs
use std::fs::File; use std::path::PathBuf; use nu_plugin::EvaluatedCall; use nu_protocol::ShellError; use polars_io::SerWriter; use polars_io::avro::{AvroCompression, AvroWriter}; use crate::command::core::resource::Resource; use crate::values::NuDataFrame; fn get_compression(call: &EvaluatedCall) -> Result<Option<A...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/slice.rs
crates/nu_plugin_polars/src/dataframe/command/data/slice.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use crate::{PolarsPlugin, dataframe::values::Column, values::CustomValueSupport}; use crate::values::{NuDataFrame, NuLazyFrame, Pola...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/first.rs
crates/nu_plugin_polars/src/dataframe/command/data/first.rs
use crate::{ PolarsPlugin, values::{ Column, CustomValueSupport, NuLazyFrame, NuLazyGroupBy, PolarsPluginObject, PolarsPluginType, }, }; use crate::values::{NuDataFrame, NuExpression}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/drop_nulls.rs
crates/nu_plugin_polars/src/dataframe/command/data/drop_nulls.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use crate::PolarsPlugin; use crate::values::{CustomValueSupport, PolarsPluginType}; use crate::values::utils::convert_columns_string...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/reverse.rs
crates/nu_plugin_polars/src/dataframe/command/data/reverse.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{Category, Example, LabeledError, PipelineData, Signature, Span, Value}; use crate::{ PolarsPlugin, values::{Column, CustomValueSupport, NuDataFrame, NuLazyFrame, PolarsPluginType}, }; pub struct LazyReverse; impl PluginCommand ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/select.rs
crates/nu_plugin_polars/src/dataframe/command/data/select.rs
use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuExpression, NuLazyFrame}, values::{CustomValueSupport, PolarsPluginType}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Signature, Span, SyntaxSha...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/pivot.rs
crates/nu_plugin_polars/src/dataframe/command/data/pivot.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use chrono::DateTime; use polars::prelude::Expr; use polars_lazy::frame::pivot::{pivot, pivot_stable}; use crate::{ PolarsPlugin...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/sort_by_expr.rs
crates/nu_plugin_polars/src/dataframe/command/data/sort_by_expr.rs
use crate::values::{NuLazyFrame, PolarsPluginType}; use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuExpression}, values::CustomValueSupport, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellErr...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/collect.rs
crates/nu_plugin_polars/src/dataframe/command/data/collect.rs
use crate::{ Cacheable, PolarsPlugin, dataframe::values::{Column, NuDataFrame}, values::{CustomValueSupport, PolarsPluginObject, PolarsPluginType, cant_convert_err}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Shel...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/filter.rs
crates/nu_plugin_polars/src/dataframe/command/data/filter.rs
use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuExpression, NuLazyFrame}, values::{CustomValueSupport, PolarsPluginObject, PolarsPluginType, cant_convert_err}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, Pi...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/rename.rs
crates/nu_plugin_polars/src/dataframe/command/data/rename.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use crate::{ PolarsPlugin, dataframe::{utils::extract_strings, values::NuLazyFrame}, values::{CustomValueSupport, PolarsP...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/take.rs
crates/nu_plugin_polars/src/dataframe/command/data/take.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use polars::prelude::DataType; use crate::{PolarsPlugin, dataframe::values::Column, values::CustomValueSupport}; use crate::values::...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/struct_json_encode.rs
crates/nu_plugin_polars/src/dataframe/command/data/struct_json_encode.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{Category, Example, LabeledError, PipelineData, Signature, Span, Type}; use polars::df; use crate::{ PolarsPlugin, values::{CustomValueSupport, NuDataFrame, NuExpression}, }; #[derive(Clone)] pub struct StructJsonEncode; impl Pl...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/arg_where.rs
crates/nu_plugin_polars/src/dataframe/command/data/arg_where.rs
use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuExpression}, values::{CustomValueSupport, PolarsPluginType}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Signature, Span, SyntaxShape, Type, Valu...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/unique.rs
crates/nu_plugin_polars/src/dataframe/command/data/unique.rs
use crate::{ PolarsPlugin, dataframe::{utils::extract_strings, values::NuLazyFrame}, values::{ CustomValueSupport, NuExpression, PolarsPluginObject, PolarsPluginType, cant_convert_err, }, }; use crate::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/sql_expr.rs
crates/nu_plugin_polars/src/dataframe/command/data/sql_expr.rs
use polars::error::PolarsError; use polars::prelude::{DataType, Expr, LiteralValue, PolarsResult as Result, TimeUnit, col, lit}; use sqlparser::ast::{ ArrayElemTypeDef, BinaryOperator as SQLBinaryOperator, DataType as SQLDataType, DuplicateTreatment, Expr as SqlExpr, Function as SQLFunction, FunctionArguments,...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/flatten.rs
crates/nu_plugin_polars/src/dataframe/command/data/flatten.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Signature, Span, SyntaxShape, Value, }; use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame}, values::{CustomValueSupport, PolarsPluginType}, }; use super::e...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/sql_context.rs
crates/nu_plugin_polars/src/dataframe/command/data/sql_context.rs
use crate::dataframe::command::data::sql_expr::parse_sql_expr; use polars::error::{ErrString, PolarsError}; use polars::prelude::{DataFrame, DataType, IntoLazy, LazyFrame, col}; use sqlparser::ast::{ Expr as SqlExpr, GroupByExpr, Select, SelectItem, SetExpr, Statement, TableFactor, Value as SQLValue, }; use sql...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/filter_with.rs
crates/nu_plugin_polars/src/dataframe/command/data/filter_with.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use polars::prelude::LazyFrame; use crate::{ PolarsPlugin, dataframe::values::{NuExpression, NuLazyFrame}, values::{Custo...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/unnest.rs
crates/nu_plugin_polars/src/dataframe/command/data/unnest.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, }; use polars::{df, prelude::PlSmallStr}; use crate::{ PolarsPlugin, values::{CustomValueSupport, NuLazyFrame, PolarsPluginObject, Pola...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/last.rs
crates/nu_plugin_polars/src/dataframe/command/data/last.rs
use crate::{ PolarsPlugin, values::{ Column, CustomValueSupport, NuLazyFrame, NuLazyGroupBy, PolarsPluginObject, PolarsPluginType, }, }; use crate::values::{NuDataFrame, NuExpression}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/drop_duplicates.rs
crates/nu_plugin_polars/src/dataframe/command/data/drop_duplicates.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use polars::df; use polars::prelude::UniqueKeepStrategy; use crate::PolarsPlugin; use crate::values::CustomValueSupport; use crate::v...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/replace.rs
crates/nu_plugin_polars/src/dataframe/command/data/replace.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, NuDataFrame, NuExpression, PolarsPluginType, str_to_dtype}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use p...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/unpivot.rs
crates/nu_plugin_polars/src/dataframe/command/data/unpivot.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Spanned, SyntaxShape, Value, }; use polars::{ frame::explode::UnpivotArgsIR, prelude::{UnpivotArgsDSL, cols}, }; use polars_ops::pivot::UnpivotDF...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/fill_nan.rs
crates/nu_plugin_polars/src/dataframe/command/data/fill_nan.rs
use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuExpression}, values::{CustomValueSupport, PolarsPluginObject, PolarsPluginType, cant_convert_err}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Sh...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/lit.rs
crates/nu_plugin_polars/src/dataframe/command/data/lit.rs
use crate::{ PolarsPlugin, dataframe::values::NuExpression, values::{CustomValueSupport, PolarsPluginType}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, Signature, SyntaxShape, Type, Value, record, }; #[derive(Clone...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/concat.rs
crates/nu_plugin_polars/src/dataframe/command/data/concat.rs
use crate::{ PolarsPlugin, values::{CustomValueSupport, NuLazyFrame, PolarsPluginType}, }; use crate::values::NuDataFrame; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Type, Va...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/fill_null.rs
crates/nu_plugin_polars/src/dataframe/command/data/fill_null.rs
use crate::{ PolarsPlugin, dataframe::values::{Column, NuDataFrame, NuExpression, NuLazyFrame}, values::{CustomValueSupport, PolarsPluginObject, PolarsPluginType, cant_convert_err}, }; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, Pip...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/dummies.rs
crates/nu_plugin_polars/src/dataframe/command/data/dummies.rs
use crate::values::{NuDataFrame, PolarsPluginType}; use crate::{PolarsPlugin, values::CustomValueSupport}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{Category, Example, LabeledError, PipelineData, ShellError, Signature, Span}; use polars::{prelude::*, series::Series}; #[derive(Cl...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/shift.rs
crates/nu_plugin_polars/src/dataframe/command/data/shift.rs
use crate::{ PolarsPlugin, dataframe::values::{NuExpression, NuLazyFrame}, values::{CustomValueSupport, PolarsPluginObject, PolarsPluginType, cant_convert_err}, }; use crate::values::{Column, NuDataFrame}; use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Exa...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/mod.rs
crates/nu_plugin_polars/src/dataframe/command/data/mod.rs
mod alias; mod append; mod arg_where; mod cast; mod col; mod collect; mod concat; mod cut; mod drop; mod drop_duplicates; mod drop_nulls; mod dummies; mod explode; mod fill_nan; mod fill_null; mod filter; mod filter_with; mod first; mod flatten; mod get; mod join; mod join_where; mod last; mod len; mod lit; mod pivot; ...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/drop.rs
crates/nu_plugin_polars/src/dataframe/command/data/drop.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use crate::PolarsPlugin; use crate::values::{CustomValueSupport, PolarsPluginType}; use crate::values::utils::convert_columns; use c...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false
nushell/nushell
https://github.com/nushell/nushell/blob/6d3cb27fa40b324a1168c577aee7f3532a5e157e/crates/nu_plugin_polars/src/dataframe/command/data/append.rs
crates/nu_plugin_polars/src/dataframe/command/data/append.rs
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand}; use nu_protocol::{ Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Value, }; use crate::{ PolarsPlugin, values::{Axis, Column, CustomValueSupport, NuDataFrame, PolarsPluginType}, }; #[derive(Clone)] pu...
rust
MIT
6d3cb27fa40b324a1168c577aee7f3532a5e157e
2026-01-04T15:32:17.606688Z
false