我正在尝试排列(通过 grid.arrange 中的 gridExtra )来自 ggtern -package 的三元图和并排的常规 ggplot2 图。但是,删除了三元图的美学和标签位置。

我是 aware that this seems to be a bug. 任何绕过这个问题并产生我正在寻找的输出的指针都非常感谢。

一个可重现的例子:

library(ggplot2)
library(ggtern)
library(reshape2)
library(gridExtra)

# Some faux data
dat <- replicate(3, runif(5))
dat <- as.data.frame(dat/rowSums(dat))
colnames(dat) <- LETTERS[seq_len(ncol(dat)) + 23]
dat$var <- factor(LETTERS[seq_len(nrow(dat))])

# Make a ternary plot
tern.plot <-
  ggplot(data = dat, aes(y=Y, x=X, z=Z, color = var, fill = var)) +
  coord_tern() +
  geom_point(size = 3)

# Make a stacked barplot
dat.melt <- melt(dat, id.vars = "var", variable.name = "dim")
stacked.plot <-
  ggplot(data = dat.melt, aes(x = var, y = value, fill = dim)) +
  geom_bar(stat = "identity")

# Arrange the two plots:
grid.arrange(tern.plot, stacked.plot, ncol = 2)
#Warning messages:
#1: In is.na(x) : is.na() applied to non-(list or vector) of type 'NULL'
#2: In is.na(x) : is.na() applied to non-(list or vector) of type 'NULL'
# ...
#9: In is.na(x) : is.na() applied to non-(list or vector) of type 'NULL'

三元图应如下所示:
print(tern.plot)

最佳答案

我使用 ggtern.multi 得到了想要的结果,我显然完全错过了。

ggtern.multi(tern.plot, stacked.plot, cols = 2)

正如 David Arenburg 在评论中所建议的那样, multiplot 函数也可以完美运行。
library(devtools)
source_gist("https://gist.github.com/AEBilgrau/2a78a9ebda2226b6b988")
multiplot(tern.plot, stacked.plot, cols = 2)

关于r - 使用 ggplot 排列三元图时出现意外输出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24931490/

10-12 19:22