我们可以用 table
table
table(df1) # Subject #StudentID A B C # 1 1 1 0 # 2 1 0 1 # 3 1 1 0
如果我们需要一个 data.frame
data.frame
as.data.frame.matrix(table(df1))