我正在使用ggplot来创建我的数据密度的图。但我想得到X值的图,直到2.0。 我怎样才能将这笔费用放在我的代码中?
这是我的代码和情节:
ggplot()+geom_density(aes(data=Ge,x=GeN[,1]),color='red')
答案 0 :(得分:1)
ggplot(iris, aes(x = Petal.Length)) + geom_density()
ggplot(iris, aes(x = Petal.Length)) + geom_density() + xlim(0, 2)