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