标签: r ggplot2
我有以下信用记录数据集。
如何使用ggplot2为每个性别绘制年龄组(申请贷款)。
提前致谢。
答案 0 :(得分:1)
library(ggplot) german_credit$Sex <- as.factor(german_credit$Sex) ggplot(german_credit, aes(x = Age)) + geom_histogram() + facet_wrap(~Sex)