我想将变量名传递给函数,但似乎无法做到。简单地...
library (reshape)
test <- function(x) {
cast(data, x ~ ., length)
}
test(ageg)
我得到这个回扣。
Error: Casting formula contains variables not found in molten data: x
我知道这很简单,但我找不到答案。我希望它简单地运行
cast(data, ageg ~ ., length)