用R中的ggplot2绘制具有性别的年龄组

时间:2017-07-06 11:29:31

标签: r ggplot2

我有以下信用记录数据集。 german credit history

如何使用ggplot2为每个性别绘制年龄组(申请贷款)。

提前致谢。

1 个答案:

答案 0 :(得分:1)

library(ggplot)
german_credit$Sex <- as.factor(german_credit$Sex)
ggplot(german_credit, aes(x = Age)) + geom_histogram() + facet_wrap(~Sex)