R : 집계 함수를 사용하여 엄격하게 비율 테이블을 만드는 방법은 무엇입니까? [복제]
Nov 21 2020
이 코드 줄이 있지만 FUN 매개 변수 아래에 테이블 비율을 만드는 명령을 모릅니다.
list(aggregate(df[,xx], by=list(df[,yy]), FUN=proportions)
답변
1 akrun Nov 21 2020 at 05:29
proportions
테이블 을 생성 하는 경우 table
with proportions
(또는 prop.table
)
proportions(table(df[c('xx', 'yy')]))
우리가 사용하는 경우에만 aggregate
transform(aggregate(xx ~ yy, df, FUN = length), prop = xx/sum(xx))