4
以從GGPLOT2手冊在ggplot2中,我怎樣才能限制geom_hline的範圍?
p <- ggplot(mtcars, aes(x = wt, y=mpg)) + geom_point()
p + geom_hline(yintercept=20)
一個簡單的情節我得到值20的水平線,如廣告。
有沒有辦法來限制這一行的x軸的範圍,讓公司say2 - 4範圍是多少?
以從GGPLOT2手冊在ggplot2中,我怎樣才能限制geom_hline的範圍?
p <- ggplot(mtcars, aes(x = wt, y=mpg)) + geom_point()
p + geom_hline(yintercept=20)
一個簡單的情節我得到值20的水平線,如廣告。
有沒有辦法來限制這一行的x軸的範圍,讓公司say2 - 4範圍是多少?
您可以使用geom_segment()
而不是geom_hline()
,並提供您需要的x=
和xend=
值。
p+geom_segment(aes(x=2,xend=4,y=20,yend=20))
@Dzidzis謝謝 - 工作。一旦我的選票明天回來,也會增加+1! – radek 2014-08-29 14:14:29