[问题] 不同字串重复次数

楼主: Udyr (Udyr)   2015-12-24 01:20:30
[问题类型]:
程式咨询(我想用R 做某件事情,但是我不知道要怎么用R 写出来)
[软件熟悉度]:
新手(没写过程式,R 是我的第一次)
[问题叙述]:
有一些字串,如
>listA
[1] "001" "002" "003" "004" "005"
>listB
[1] "002" "004" "006"
>listC
[1] "001" "003" "005"
欲得到每个element重复出现的次数
element freq
001 2
002 2
003 2
004 2
005 2
006 1
作者: celestialgod (天)   2015-12-24 01:21:00
table(do.call(c, list(listA,listB,listC)))table(c(listA,listB,listC))就好了(摊手

Links booklink

Contact Us: admin [ a t ] ucptt.com