R堆叠%频率直方图,基于聚合数据的百分比

时间:2017-08-10 02:12:13

标签: r ggplot2 histogram frequency

我相信我的问题与this post非常相似。唯一的区别是我的填充是一个多层次的因素。这就是我所追求的enter image description here

这就是我已经走了多远

set.seed(123)
n = 100

LoanStatus = sample(c('Chargedoff', 'Completed', 'Current', 'Defaulted', 'PastDue'), n, replace = T, prob = NULL)
ProsperScore = sample(1:11, n, replace = T, prob = NULL)

df = data.frame(ProsperScore,factor(LoanStatus))
df = data.frame(ProsperScore,LoanStatus)

probs = data.frame(prop.table(table(df),1))

0 个答案:

没有答案