找回密码
 立即注册
查看: 8062|回复: 5

R语言中如何实现对一列中某一类数据的计数以及这一列中所有的类别计数

[复制链接]
发表于 2015-6-16 20:29:08 | 显示全部楼层 |阅读模式
RT           ACC        experiment                    Type   subject
1921       0              For-Time---1000               H             1
0             0              For-Time---1000               L             1
1515       1              For-Time---1000               H             1
2732       0              For-Time---1000               H             1
1400       1              For-Time---1000               H             1
1380       1              For-Time---1000               M1           2
1675       0              For-Time---1000               H             2
1274       0              For-Time---1000               M2           2
1237       1              For-Time---1000               L              2
1054       0              For-Time---1000               M1           2
985         1              For-Time---1000               L              3
851         1              For-Time---1000               H             3
1114       1              For-Time---1000               M2           3
1355       1              For-Time---1000               M2           3
1226       1              For-Time---1000               M1           3
例如我想从上边这些数据中得知subject中有几类数据(1,2,3.....)各自类别中有几个数据(如subject=1的有5个,=2的有5个诸如此类),该用怎么样的语句加以实现,谢谢各位帮助!

回复

使用道具 举报

发表于 2015-6-17 17:11:04 | 显示全部楼层
as.factor(subject)试试
回复

使用道具 举报

发表于 2015-6-17 19:27:26 | 显示全部楼层
我也有同样的问题。
回复

使用道具 举报

发表于 2015-6-17 21:36:24 | 显示全部楼层
> attach(mydataframe)
> aggregate(mydataframe,by=list(subject),length)
  Group.1 RT ACC experiment Type subject
1       1  5   5          5    5       5
2       2  5   5          5    5       5
3       3  5   5          5    5       5
回复

使用道具 举报

发表于 2015-6-18 16:36:14 | 显示全部楼层
length(unique(data))
回复

使用道具 举报

发表于 2015-6-23 11:26:50 | 显示全部楼层
attcah(data)
table(subject)
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|R语言中文网

GMT+8, 2024-11-25 22:45 , Processed in 0.026883 second(s), 18 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表