1 type derived from KeepColumnAggregator
Microsoft.ML.Transforms (1)
GroupTransform.cs (1)
460
private sealed class ListAggregator<TValue> :
KeepColumnAggregator
7 references to KeepColumnAggregator
Microsoft.ML.Transforms (7)
GroupTransform.cs (7)
448
public static
KeepColumnAggregator
Create(DataViewRow row, int col)
457
return cons.Invoke(new object[] { row, col }) as
KeepColumnAggregator
;
509
private readonly
KeepColumnAggregator
[] _aggregators;
550
_aggregators = new
KeepColumnAggregator
[_parent._groupBinding.KeepColumnIndexes.Length];
554
_aggregators[i] =
KeepColumnAggregator
.Create(_trailingCursor, _parent._groupBinding.KeepColumnIndexes[i]);
599
foreach (
var
agg in _aggregators.Where(x => x != null))
607
foreach (
var
agg in _aggregators.Where(x => x != null))