这是我的简化数据:
company <-c(rep(c(rep("company1",4),rep("company2",4),rep("company3",4)),3))
product<-c(rep(c(rep(c("product1","product2","product3","product4"),3)),3))
week<-c( c(rep("w1",12),rep("w2",12),rep("w3",12)))
mydata<-data.frame(company=company,product=product,week=week)
mydata$rank<-c(rep(c(1,3,2,3,2,1,3,2,3,2,1,1),3))
mydata=mydata[mydata$company=="company1",]
而且,我使用的 R 代码:
ggplot(mydata,aes(x = week,fill = as.factor(rank))) +
geom_bar(position = "fill")+
scale_y_continuous(labels = percent_format())
在条形图中,我想按周、按等级标记百分比。问题是数据没有排名百分比。而这个数据的结构并不适合有一个。(当然,原始数据比示例有更多的观察结果)
有没有人可以教我如何在此图中标记百分比?