geom_histogram中的xmax

时间:2013-06-27 22:32:53

标签: r ggplot2

我有一些收入数据,我希望按比赛绘制一系列直方图。

白人的收入最高为615,000,明显高于其他种族。我想将xmax设置为300,000以帮助显示,但ggplot没有响应我的xmax命令。

    ggplot(employeeservices, aes(x=employeeservices$INCWAGE)) 
           + geom_density(xmax=300000) + facet_wrap(~Race2, ncol = 2)    

这里有什么特别的指导吗?

1 个答案:

答案 0 :(得分:1)

您需要使用xlim代替xmax

ggplot(employeeservices, aes(x=employeeservices$INCWAGE)) +
  geom_density() + facet_wrap(~Race2, ncol = 2) + xlim(0,300000)