我正在使用钻石数据集对项目进行一些分析。我需要弄清楚如何改变x和y尺度。当我使用它时:
library(ggplot2)
ggplot(diamonds, aes(x=carat,y=price))+geom_point()+ylab("Diamond Price")+
xlab("Diamond Cut")
x标度为0-5,y标度为1000-5000。如何更改比例和间隔?
提前致谢
答案 0 :(得分:1)
使用xlim
或ylim
:
ggplot(diamonds, aes(x=carat,y=price)) +
geom_point() + ylab("Diamond Price") + xlab("Diamond Cut") +
ylim(0, 5000) + xlim(0,2)