如何将输出插入命令行/函数

时间:2014-04-21 17:59:12

标签: r

我有输出(“1b”“2b”“3b”......“40b”)然后将这些值插入到函数中以进行进一步计算。我正在使用以下代码准备值。

# delete column names
names(profile.ab)  <- NULL
# insert comma between values
 (profile.ab<-sub("([[:digit:]]{1,1})$", "\\1,", profile. ab))
# remove comma from last item
profile.ab [50] = "2"
# remove quotations
noquote(profile. ab)
# delete leading bracketed numbers
cat(profile.ab, "\n")

此时我正在切割和粘贴,但这是一项艰巨的任务。我需要将列表自动重定向到一个函数中。

谢谢

0 个答案:

没有答案