2

我真的是 plyr 的quoted课;我希望能够组合两个引用对象并获得一个新对象。例如,我如何定义mult(a,b)这样

q1 <- as.quoted("x+y")
q2 <- as.quoted("y+z")
mult <- function(a, b) {?????}

## mult(q1, q2) returns as.quoted("(x+y)*(y+z)")
4

1 回答 1

0

您需要eval引用的公式,然后将paste它们放在一起:

mult <- function(a, b) {
  as.quoted(paste(eval(a), '*', eval(b)))
}

> mult(q1, q2)
List of 1
 $ x + y * y + z: language x + y * y + z
 - attr(*, "env")=<environment: 0x2920980> 
 - attr(*, "class")= chr "quoted"
> 
于 2012-09-04T14:16:56.387 回答