Some test data:
ltd <- data.frame(r = c(rnorm(10), f1 = c(rep("L", 5), rep("H", 5)),
f2 = rep(c("A", "B"), 5))
And a minimal function:
tf <- function(formula = NULL, data = NULL) {
res <- as.character(formula[[2]]) # clean & prep data
fac1 <- as.character(formula[[3]][2])
fac2 <- as.character(formula[[3]][3])
counts <- count(data, vars = c(fac2, fac1)) # get table data ready
colnames(counts) <- c(fac2, fac1, "count")
myt <- tableGrob(counts, show.box = TRUE,
show.rownames = FALSE, show.colnames = TRUE,
show.csep = TRUE, show.rsep = TRUE,
separator = "black")
p <- ggplot()
p <- p + geom_point(data = data,
aes_string(x = fac1, y = res, color = fac2, group = fac2))
p <- p + annotation_custom(myt) # comment out and it works
}
Run it:
require("plyr")
require("gridExtra")
require("ggplot2")
tmp <- tf(formula = r~f1*f2, data = ltd)
print(tmp)
Gives Error in if (nrow(layer_data) == 0) return() : argument is of length zero
If you print the tableGrob it does exist, so I'm not sure what's going on here. If you comment out the annotation_custom
it works, and I think I'm following the docs. Thanks. (ggplot2_0.9.3)