ggplot2将x轴移动到顶部(与0相反的y轴相交)

时间:2014-01-10 02:18:53

标签: r ggplot2

我想制作一个在y = 0时反转y轴和x轴的图形。 y轴与scale_y_reverse相反,但x轴保持在底部。

p <- ggplot(df, aes(x= conc, y=depth, group=factor(stn), color=factor(stn)))+
geom_point(shape=1)+
geom_path(alpha=0.5)+
scale_y_reverse(limits=(c(20,0)), expand=c(0,0))+   
scale_x_continuous(expand=c(0,0))

我尝试了this post中的代码,如下所示,但没有用。

p + 
scale_x_continuous(guide = guide_axis(position = "top")) + 
scale_y_continuous(guide = guide_axis(position = "right"))

我不需要有两个x轴,只需从底部移动到顶部即可。

2 个答案:

答案 0 :(得分:3)

ggplot2仍然无法做到这一点,但ggvis可以将ggplot2语法与dplyr管道相结合。只需使用add_axis功能将轴置于顶部即可。

# sample data
N <- 20
df <- data.frame(conc = seq(0, N), 
                 depth = runif(N+1, 0, 20), 
                 stn = rep(1:4, length=N+1))
# ggplot version
require(ggplot2)
p <- ggplot(df, aes(x= conc, y=depth, group=factor(stn), color=factor(stn)))+
  geom_point(shape=1)+
  geom_path(alpha=0.5)+
  scale_y_reverse(limits=(c(20,0)), expand=c(0,0))+   
  scale_x_continuous(expand=c(0,0))
p
# ggvis version
require(ggvis)
df %>% transform(stn = factor(stn)) %>%
  ggvis(x = ~conc, y = ~depth, stroke = ~stn) %>%
  layer_points(shape := "circle", fill := "white") %>%
  layer_lines(opacity := 0.5) %>%
  scale_numeric("y", reverse=TRUE, domain=c(0,20), expand=c(0,0)) %>%
  scale_numeric("x", expand=c(0,0)) %>%
  add_axis("x", orient = "top") 

答案 1 :(得分:0)

您也可以使用:

findViewById()