plot multiple cumulative percentage graph by groups
我的数据看起来像:
1 2 3 4 5 6 7 8 9 10 11 | zip ID count 230 B 12 230 A 10 230 C 9 230 D 5 270 C 10 270 A 9 270 B 8 290 C 9 290 A 8 290 B 6 |
如何按
到目前为止,我读到 ggplot2 内置了 ecdf,但我不知道如何在那里生成多个图形。我试过
1 | p<-qplot(dat,stat='ecdf',geom='count')+facet_wrap(~zip,ncol=10) |
但它根本不起作用。
谁能给我一个提示?
1 | ggplot(dat, aes(x=count) )+stat_ecdf()+facet_wrap(~zip,ncol=10) |
(尽管 ncol 参数似乎被忽略了。)