标签: r naming
我想对功能进行自动命名。例如,我通过“样本”名称导入数据。为此,我尝试了类似的功能。
fnctn<-function(a) {data(names(a))}
但是当我写fnctn(sample)时;我知道了
fnctn(sample)
Warning message: In data(names(a)) : data set ‘names(a)’ not found
反正有这样做吗?