通过“”COUNT“将长格式重新格式化为宽格式..如何制作它?

时间:2016-12-04 14:34:57

标签: r

我是R初学者

我的数据框如下所示

enter image description here

我希望通过“数据帧格式”

重构上面的数据帧

enter image description here

我知道我可以通过'table function'来实现它 表(incomegr = edu.q $ incomegr,edu.q $ langgr) 但这种格式是'table'而不是'dataframe'

即,我想让每个'收入','Gr9','Gr8' 作为数据框列。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

我们可以使用

as.data.frame.matrix(table(incomegr=edu.q$incomegr,edu.q$langgr))