我有以下带有变量名的数据框"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 ()
}