我有一些收入数据,我希望按比赛绘制一系列直方图。
白人的收入最高为615,000,明显高于其他种族。我想将xmax
设置为300,000以帮助显示,但ggplot
没有响应我的xmax
命令。
ggplot(employeeservices, aes(x=employeeservices$INCWAGE))
+ geom_density(xmax=300000) + facet_wrap(~Race2, ncol = 2)
这里有什么特别的指导吗?
答案 0 :(得分:1)
您需要使用xlim
代替xmax
。
ggplot(employeeservices, aes(x=employeeservices$INCWAGE)) +
geom_density() + facet_wrap(~Race2, ncol = 2) + xlim(0,300000)