Table.AggregateTableColumn
통사론
Table.AggregateTableColumn(table as table, column as text, aggregations as list) as table
소개
table
[column
]의 테이블을 테이블의 집계 값이 포함된 여러 열로 집계합니다.
aggregations
집계할 테이블이 포함된 열, 값을 생성하기 위해 테이블에 적용할 집계 함수 및 만들 집계 열의 이름을 지정하는 데 사용됩니다.
예제 1
[t]
테이블의 열을 {[t = {[a=1, b=2, c=3], [a=2,b=4,c=6]}, b = 2]}
테이블에서 [t.a]
의 합계, [t.b]
의 최소값 및 최대값, 그리고 [t.a]
의 값 개수로 집계합니다.
사용량
Table.AggregateTableColumn(
Table.FromRecords(
{
[
t = Table.FromRecords({
[a = 1, b = 2, c = 3],
[a = 2, b = 4, c = 6]
}),
b = 2
]
},
type table [t = table [a = number, b = number, c = number], b = number]
),
"t",
{
{"a", List.Sum, "sum of t.a"},
{"b", List.Min, "min of t.b"},
{"b", List.Max, "max of t.b"},
{"a", List.Count, "count of t.a"}
}
)
출력
Table.FromRecords({[#"sum of t.a" = 3, #"min of t.b" = 2, #"max of t.b" = 4, #"count of t.a" = 2, b = 2]})