0
有一個簡單的彙總:爲什麼將聚合函數應用於分組列?
dat = read.table(textConnection(
'ID value
1 4
1 7
2 8
2 3
2 3'), header = TRUE)
aggregate(dat,by=list("type"=dat$ID),sum)
我得到的結果輸出:
type ID value
1 1 2 11
2 2 6 14
我想知道:
1.in第一行,爲什麼ID爲2?
2.在第二行,爲什麼ID是6?