如何使用ggplot为x轴设置上限?

时间:2014-06-14 15:27:43

标签: r

我正在使用ggplot来创建我的数据密度的图。但我想得到X值的图,直到2.0。 我怎样才能将这笔费用放在我的代码中?

这是我的代码和情节:

ggplot()+geom_density(aes(data=Ge,x=GeN[,1]),color='red')

enter image description here

1 个答案:

答案 0 :(得分:1)

 ggplot(iris, aes(x = Petal.Length)) + geom_density()

enter image description here

ggplot(iris, aes(x = Petal.Length)) + geom_density() + xlim(0, 2)

enter image description here