ggplot条形图加起来达100%

时间:2017-05-18 15:09:15

标签: r ggplot2 bar-chart

这是我的例子

    mydf = data.frame('col_1' = c('A','A','A', 'B','B'),
 'col_2' = c('positive', 'negative', 'negative', 'positive', 'positive'))
    mydf
    ggplot(data=mydf, aes(x = col_1, fill = col_2))+ geom_bar(stat='count')

这是它产生的东西: bar plot

我希望bar加起来达到100%。因此,第一个柱将显示33%和67%,第二个柱将是100%

我知道如何操作数据,但我不知道如何将其转换为ggplot所需的格式。

有什么建议吗?

0 个答案:

没有答案