Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个看起来像这样的数据框:
date id freq 6/17/12 0417D0214D 81 6/17/12 0417D2F96C 275 6/18/12 04179385A3 1 6/18/12 041793A84F 2 6/18/12 0417CA9138 2 6/18/12 0417D0214D 120
如何制作一个堆叠条形图,其中 x 轴上的日期和 y 轴上的频率以及以相对大小和不同颜色显示的每个日期堆叠的不同 id?
仅作为一个类别并没有太多工作,但这里有:
dat <- read.table(text="date id freq 6/17/12 0417D0214D 81 6/17/12 0417D2F96C 275 6/18/12 04179385A3 1 6/18/12 041793A84F 2 6/18/12 0417CA9138 2 6/18/12 0417D0214D 120", header=TRUE) barplot(as.matrix(dat$freq) , beside=FALSE)