I'm trying to arrange (via grid.arrange
in gridExtra
) a ternary plot from ggtern
-package and a regular ggplot2
plot side-by-side. However, the aesthetics and label positions of the ternary plot are removed.
I'm aware that this seems to be a bug. Any pointers to circumvent this issue and produce the output I'm looking for is much appreciated.
A reproducible example:
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'
The ternary plot should look like:
print(tern.plot)