0

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

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

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

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

4

1 回答 1

1

您需要使用xlim而不是xmax.

ggplot(employeeservices, aes(x=employeeservices$INCWAGE)) +
  geom_density() + facet_wrap(~Race2, ncol = 2) + xlim(0,300000)
于 2013-07-02T19:17:31.937 回答