如何制作分数条形图?

时间:2018-11-26 23:46:53

标签: r ggplot2

当我这样做时:

ggplot(d, aes(x=variable, fill=value))+geom_bar(position = "fill")

我明白了

enter image description here

但是我想要这样的东西,基本上这些值应该用分数着色。我怎样才能做到这一点?想法是基本上了解models, percentiles, and models:percentilesR2, R5, and R10的相对贡献。

Example plot

数据框

structure(list(term = c("models", "percentiles", "models:percentiles", 
"models", "percentiles", "models:percentiles", "models", "percentiles", 
"models:percentiles"), variable = structure(c(1L, 1L, 1L, 2L, 
2L, 2L, 3L, 3L, 3L), .Label = c("R2", "R5", "R10"), class = "factor"), 
    value = c(0.435697205847009, 0.533615307749147, 0.0306874864038442, 
    0.441369621882273, 0.520198994695284, 0.0384313834224421, 
    0.394491546635206, 0.579421546902868, 0.0260869064619254)), row.names = c(NA, 
-9L), class = "data.frame")

1 个答案:

答案 0 :(得分:2)

geom_col在这里完成工作:

ggplot(d, aes(x = variable, y = value, fill = term)) + geom_col()

ggplot(d, aes(x = variable, y = value, fill = term)) + geom_bar(stat = "identity")

enter image description here