最佳答案
我有以下数据帧与变量名称 "foo"
;
> foo <-c(3,4);
我想要做的是把 "foo"
转换成一个字符串
我不需要再创造另一个额外的变量:
output <- myfunc(foo)
myfunc <- function(v1) {
# do something with v1
# so that it prints "FOO" when
# this function is called
#
# instead of the values (3,4)
return ()
}