如何在gggplot2-R图中设置轴的限制?我的情节如下:library(ggplot2) carrots <- data.frame(length = rnorm(500000, 10000, 10000))cukes <- data.frame(length = rnorm(50000, 10000, 20000))
carrots$veg <- 'carrot'cukes$veg <- 'cuke'vegLengths <- rbind(carrots, cukes)ggplot(vegLengths, aes(length, fill = veg)) +
geom_density(alpha = 0.2)现在说我只想在x=-5000到5000而不是整个范围。我怎么能这么做?
3 回答
烙印99
TA贡献1829条经验 获得超13个赞
scale_x_continuous(limits = c(-5000, 5000))
coord_cartesian(xlim = c(-5000, 5000))
xlim
ylim
+ xlim(-5000, 5000)
coord_cartesian
.
ggplot2
- 3 回答
- 0 关注
- 1502 浏览
添加回答
举报
0/150
提交
取消