mirror of
https://github.com/nushell/nushell.git
synced 2025-04-30 08:04:25 +02:00
WIP This PR covers migration crates/nu-cmd-dataframes to a new plugin ./crates/nu_plugin_polars ## TODO List Other: - [X] Fix examples - [x] Fix Plugin Test Harness - [X] Move Cache to Mutex<BTreeMap> - [X] Logic for disabling/enabling plugin GC based off whether items are cached. - [x] NuExpression custom values - [X] Optimize caching (don't cache every object creation). - [x] Fix dataframe operations (in NuDataFrameCustomValue::operations) - [x] Added plugin_debug! macro that for checking an env variable POLARS_PLUGIN_DEBUG Fix duplicated commands: - [x] There are two polars median commands, one for lazy and one for expr.. there should only be one that works for both. I temporarily called on polars expr-median (inside expressions_macros.rs) - [x] polars quantile (lazy, and expr). the expr one is temporarily expr-median - [x] polars is-in (renamed one series-is-in) Commands: - [x] AppendDF - [x] CastDF - [X] ColumnsDF - [x] DataTypes - [x] Summary - [x] DropDF - [x] DropDuplicates - [x] DropNulls - [x] Dummies - [x] FilterWith - [X] FirstDF - [x] GetDF - [x] LastDF - [X] ListDF - [x] MeltDF - [X] OpenDataFrame - [x] QueryDf - [x] RenameDF - [x] SampleDF - [x] SchemaDF - [x] ShapeDF - [x] SliceDF - [x] TakeDF - [X] ToArrow - [x] ToAvro - [X] ToCSV - [X] ToDataFrame - [X] ToNu - [x] ToParquet - [x] ToJsonLines - [x] WithColumn - [x] ExprAlias - [x] ExprArgWhere - [x] ExprCol - [x] ExprConcatStr - [x] ExprCount - [x] ExprLit - [x] ExprWhen - [x] ExprOtherwise - [x] ExprQuantile - [x] ExprList - [x] ExprAggGroups - [x] ExprCount - [x] ExprIsIn - [x] ExprNot - [x] ExprMax - [x] ExprMin - [x] ExprSum - [x] ExprMean - [x] ExprMedian - [x] ExprStd - [x] ExprVar - [x] ExprDatePart - [X] LazyAggregate - [x] LazyCache - [X] LazyCollect - [x] LazyFetch - [x] LazyFillNA - [x] LazyFillNull - [x] LazyFilter - [x] LazyJoin - [x] LazyQuantile - [x] LazyMedian - [x] LazyReverse - [x] LazySelect - [x] LazySortBy - [x] ToLazyFrame - [x] ToLazyGroupBy - [x] LazyExplode - [x] LazyFlatten - [x] AllFalse - [x] AllTrue - [x] ArgMax - [x] ArgMin - [x] ArgSort - [x] ArgTrue - [x] ArgUnique - [x] AsDate - [x] AsDateTime - [x] Concatenate - [x] Contains - [x] Cumulative - [x] GetDay - [x] GetHour - [x] GetMinute - [x] GetMonth - [x] GetNanosecond - [x] GetOrdinal - [x] GetSecond - [x] GetWeek - [x] GetWeekDay - [x] GetYear - [x] IsDuplicated - [x] IsIn - [x] IsNotNull - [x] IsNull - [x] IsUnique - [x] NNull - [x] NUnique - [x] NotSeries - [x] Replace - [x] ReplaceAll - [x] Rolling - [x] SetSeries - [x] SetWithIndex - [x] Shift - [x] StrLengths - [x] StrSlice - [x] StrFTime - [x] ToLowerCase - [x] ToUpperCase - [x] Unique - [x] ValueCount --------- Co-authored-by: Jack Wright <jack.wright@disqo.com>
211 lines
7.6 KiB
Rust
211 lines
7.6 KiB
Rust
use crate::{
|
|
dataframe::values::{NuExpression, NuLazyFrame, NuLazyGroupBy},
|
|
values::{to_pipeline_data, Column, CustomValueSupport, NuDataFrame},
|
|
PolarsPlugin,
|
|
};
|
|
|
|
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand};
|
|
use nu_protocol::{
|
|
Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, SyntaxShape, Type,
|
|
Value,
|
|
};
|
|
use polars::{datatypes::DataType, prelude::Expr};
|
|
|
|
#[derive(Clone)]
|
|
pub struct LazyAggregate;
|
|
|
|
impl PluginCommand for LazyAggregate {
|
|
type Plugin = PolarsPlugin;
|
|
|
|
fn name(&self) -> &str {
|
|
"polars agg"
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Performs a series of aggregations from a group-by."
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build(self.name())
|
|
.rest(
|
|
"Group-by expressions",
|
|
SyntaxShape::Any,
|
|
"Expression(s) that define the aggregations to be applied",
|
|
)
|
|
.input_output_type(
|
|
Type::Custom("dataframe".into()),
|
|
Type::Custom("dataframe".into()),
|
|
)
|
|
.category(Category::Custom("lazyframe".into()))
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Group by and perform an aggregation",
|
|
example: r#"[[a b]; [1 2] [1 4] [2 6] [2 4]]
|
|
| polars into-df
|
|
| polars group-by a
|
|
| polars agg [
|
|
(polars col b | polars min | polars as "b_min")
|
|
(polars col b | polars max | polars as "b_max")
|
|
(polars col b | polars sum | polars as "b_sum")
|
|
]"#,
|
|
result: Some(
|
|
NuDataFrame::try_from_columns(
|
|
vec![
|
|
Column::new(
|
|
"a".to_string(),
|
|
vec![Value::test_int(1), Value::test_int(2)],
|
|
),
|
|
Column::new(
|
|
"b_min".to_string(),
|
|
vec![Value::test_int(2), Value::test_int(4)],
|
|
),
|
|
Column::new(
|
|
"b_max".to_string(),
|
|
vec![Value::test_int(4), Value::test_int(6)],
|
|
),
|
|
Column::new(
|
|
"b_sum".to_string(),
|
|
vec![Value::test_int(6), Value::test_int(10)],
|
|
),
|
|
],
|
|
None,
|
|
)
|
|
.expect("simple df for test should not fail")
|
|
.into_value(Span::test_data()),
|
|
),
|
|
},
|
|
Example {
|
|
description: "Group by and perform an aggregation",
|
|
example: r#"[[a b]; [1 2] [1 4] [2 6] [2 4]]
|
|
| polars into-lazy
|
|
| polars group-by a
|
|
| polars agg [
|
|
(polars col b | polars min | polars as "b_min")
|
|
(polars col b | polars max | polars as "b_max")
|
|
(polars col b | polars sum | polars as "b_sum")
|
|
]
|
|
| polars collect"#,
|
|
result: Some(
|
|
NuDataFrame::try_from_columns(
|
|
vec![
|
|
Column::new(
|
|
"a".to_string(),
|
|
vec![Value::test_int(1), Value::test_int(2)],
|
|
),
|
|
Column::new(
|
|
"b_min".to_string(),
|
|
vec![Value::test_int(2), Value::test_int(4)],
|
|
),
|
|
Column::new(
|
|
"b_max".to_string(),
|
|
vec![Value::test_int(4), Value::test_int(6)],
|
|
),
|
|
Column::new(
|
|
"b_sum".to_string(),
|
|
vec![Value::test_int(6), Value::test_int(10)],
|
|
),
|
|
],
|
|
None,
|
|
)
|
|
.expect("simple df for test should not fail")
|
|
.into_value(Span::test_data()),
|
|
),
|
|
},
|
|
]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
plugin: &Self::Plugin,
|
|
engine: &EngineInterface,
|
|
call: &EvaluatedCall,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, LabeledError> {
|
|
let vals: Vec<Value> = call.rest(0)?;
|
|
let value = Value::list(vals, call.head);
|
|
let expressions = NuExpression::extract_exprs(plugin, value)?;
|
|
|
|
let group_by = NuLazyGroupBy::try_from_pipeline(plugin, input, call.head)?;
|
|
|
|
for expr in expressions.iter() {
|
|
if let Some(name) = get_col_name(expr) {
|
|
let dtype = group_by.schema.schema.get(name.as_str());
|
|
|
|
if matches!(dtype, Some(DataType::Object(..))) {
|
|
return Err(ShellError::GenericError {
|
|
error: "Object type column not supported for aggregation".into(),
|
|
msg: format!("Column '{name}' is type Object"),
|
|
span: Some(call.head),
|
|
help: Some("Aggregations cannot be performed on Object type columns. Use dtype command to check column types".into()),
|
|
inner: vec![],
|
|
}).map_err(|e| e.into());
|
|
}
|
|
}
|
|
}
|
|
|
|
let polars = group_by.to_polars();
|
|
let lazy = NuLazyFrame::new(false, polars.agg(&expressions));
|
|
to_pipeline_data(plugin, engine, call.head, lazy).map_err(LabeledError::from)
|
|
}
|
|
}
|
|
|
|
fn get_col_name(expr: &Expr) -> Option<String> {
|
|
match expr {
|
|
Expr::Column(column) => Some(column.to_string()),
|
|
Expr::Agg(agg) => match agg {
|
|
polars::prelude::AggExpr::Min { input: e, .. }
|
|
| polars::prelude::AggExpr::Max { input: e, .. }
|
|
| polars::prelude::AggExpr::Median(e)
|
|
| polars::prelude::AggExpr::NUnique(e)
|
|
| polars::prelude::AggExpr::First(e)
|
|
| polars::prelude::AggExpr::Last(e)
|
|
| polars::prelude::AggExpr::Mean(e)
|
|
| polars::prelude::AggExpr::Implode(e)
|
|
| polars::prelude::AggExpr::Count(e, _)
|
|
| polars::prelude::AggExpr::Sum(e)
|
|
| polars::prelude::AggExpr::AggGroups(e)
|
|
| polars::prelude::AggExpr::Std(e, _)
|
|
| polars::prelude::AggExpr::Var(e, _) => get_col_name(e.as_ref()),
|
|
polars::prelude::AggExpr::Quantile { expr, .. } => get_col_name(expr.as_ref()),
|
|
},
|
|
Expr::Filter { input: expr, .. }
|
|
| Expr::Slice { input: expr, .. }
|
|
| Expr::Cast { expr, .. }
|
|
| Expr::Sort { expr, .. }
|
|
| Expr::Gather { expr, .. }
|
|
| Expr::SortBy { expr, .. }
|
|
| Expr::Exclude(expr, _)
|
|
| Expr::Alias(expr, _)
|
|
| Expr::KeepName(expr)
|
|
| Expr::Explode(expr) => get_col_name(expr.as_ref()),
|
|
Expr::Ternary { .. }
|
|
| Expr::AnonymousFunction { .. }
|
|
| Expr::Function { .. }
|
|
| Expr::Columns(_)
|
|
| Expr::DtypeColumn(_)
|
|
| Expr::Literal(_)
|
|
| Expr::BinaryExpr { .. }
|
|
| Expr::Window { .. }
|
|
| Expr::Wildcard
|
|
| Expr::RenameAlias { .. }
|
|
| Expr::Len
|
|
| Expr::Nth(_)
|
|
| Expr::SubPlan(_, _)
|
|
| Expr::Selector(_) => None,
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::*;
|
|
use crate::test::test_polars_plugin_command;
|
|
|
|
#[test]
|
|
fn test_examples() -> Result<(), ShellError> {
|
|
test_polars_plugin_command(&LazyAggregate)
|
|
}
|
|
}
|