Thanks a bunch, Baptiste,
Your lapply call works like a charm. BTW, it works also if a, b, and c
are expressions :D
Sebastien
baptiste auguie wrote:
Hi,
You can try this, though I hope to learn of a better way to do it,
a = c(quote(alpha),quote(beta),quote(gamma))
b = lapply(1:3, function(
Hi,
You can try this, though I hope to learn of a better way to do it,
a = c(quote(alpha),quote(beta),quote(gamma))
b = lapply(1:3, function(x) as.character(x))
c = c(quote('-10'^th),
quote('-20'^th),
quote('-30'^th))
testplot <- function(a,b,c) {
text <-
lapply(seq_along(a), function(i
2 matches
Mail list logo