Thanks a lot for this great library!
I came across an issue with array_agg, I would like to preserve undefined / null values in my dataset and keep them in the aggregated array. However, arquero is skipping the undefined values and the result of array_agg is a shorter array.
I tried to implement a custom aggregate function, but the result was the same, i.e. these values seem to be filtered out before the aggregation is invoked.
It would be great if there was a way of just aggregating all values and "non-values" in an array.
Thanks a lot for this great library!
I came across an issue with
array_agg, I would like to preserve undefined / null values in my dataset and keep them in the aggregated array. However, arquero is skipping the undefined values and the result ofarray_aggis a shorter array.I tried to implement a custom aggregate function, but the result was the same, i.e. these values seem to be filtered out before the aggregation is invoked.
It would be great if there was a way of just aggregating all values and "non-values" in an array.