如何更改GGPLOT2 x和y轴的位置(How to change positions of x a

2019-07-21 07:46发布

在我的现实世界的研究,这是很常见的,显示在顶部(或顶部和底部)在右边,y轴X轴。 但是,默认位置是在底部和y在GGPLOT2左边的X。

继Kohske张贴在这里 ,使用的命令是:

x <- seq(0, 10, 0.1)
y <- sin(x * pi)
qplot(x, y, geom = "line") + 
scale_x_continuous(guide = guide_axis(position = "top")) + 
scale_y_continuous(guide = guide_axis(position = "right"))

我已经尝试上述DEV-模式命令:

install_packages("devtools")
library(devtools)
dev_mode()
install_github("ggplot2", "kohske", "feature/pguide")
library(ggplot2) 

不幸的是,它没有很好地与最新作品plyr包。 消息:

The following 'from' values not present in 'x': col, color, pch, cex, lty, lwd, srt, adj, bg, fg, min, max... 
Error in plyr:::split_indices(seq_len(nrow(data)), scale_id, n)

然后我试图从GitHub代码 directedly,该消息是:

Error in continuous_scale(c("x", "xmin", "xmax", "xend", "xintercept"),  : 
  formal argument "guide" matched by multiple actual arguments

我注意到,哈德利说这个功能是他的待办事项清单上。 但是,我找不到这时的解决方案。 谁能帮助吗?

Answer 1:

ggplot 2.2.0 ,您可以设置与轴的位置position在参数scale_

ggplot(mpg, aes(displ, hwy)) + 
  geom_point() + 
  scale_x_continuous(position = "top") + 
  scale_y_continuous(position = "right")



Answer 2:

GGPLOT2解决方案

我采用该解决方案 ,以创建一个正确的Y轴。 我个人觉得用gtable真的很难中操作grobs。 我放弃了与x轴,但我给一个格子的解决方案。 我希望这个功能将在GGPLOT2尽快实施。

library(ggplot2)
library(gtable)
library(grid)
grid.newpage()
dat <- data.frame(x<-seq(0, 10, 0.1),y = sin(x * pi))
p <- ggplot(dat, aes(x, y)) + geom_line(colour = "blue") + theme_bw()
# extract gtable
g <- ggplot_gtable(ggplot_build(p))

# axis tweaks
ia <- which(g$layout$name == "axis-l")
ax <- g$grobs[[ia]]$children[[2]]
ax$widths <- rev(ax$widths)
ax$grobs <- rev(ax$grobs)
ax$grobs[[1]]$x <- ax$grobs[[1]]$x - unit(1, "npc") + unit(0.15, "cm")
pp <- c(subset(g$layout, name == "panel", select = t:r))
g <- gtable_add_cols(g, g$widths[g$layout[ia, ]$l], length(g$widths) - 1)
g <-  gtable_add_grob(g, ax, pp$t, length(g$widths) - 1, pp$b)
g$grobs[[ia]]$children[[2]] <- NULL
##############################
ia <- which(g$layout$name == "ylab")
ylab <- g$grobs[[ia]]
g <- gtable_add_cols(g, g$widths[g$layout[ia, ]$l], length(g$widths) - 1)
g <-  gtable_add_grob(g, ylab, pp$t, length(g$widths) - 1, pp$b)
g$grobs[[ia]]$label = ''
grid.draw(g)

格子解决方案

这不是一个GGPLOT2解决方案,但lattice之一。 使用latticeExtra与GGPLOT2主题,我们可以得到一个相似的外观与所期望的行为。

library(latticeExtra)
xyplot(y~ x, type='l', scales=list(x=list(alternating=2),
                                   y=list(alternating=2)),
       par.settings = ggplot2like(),axis=axis.grid)



文章来源: How to change positions of x and y axis in ggplot2
标签: r ggplot2