有沒有一種方法可以使用字符串作爲函數參數。在我的例子中,我有三個向量,我可以使用cbind來組合它們。使用字符串的內容作爲函數參數R
> df1<-1:3
> df2<-11:13
> df3<-21:23
>
> cbind(df1, df2, df3)
df1 df2 df3
[1,] 1 11 21
[2,] 2 12 22
[3,] 3 13 23
假設我有一個字符串是「df1,df2,df3」。
> x <- 'df1, df2, df3'
有沒有辦法在cbind中使用字符串的內容?例如,我想辦法做到以下...
> cbind(x)
df1 df2 df3
[1,] 1 11 21
[2,] 2 12 22
[3,] 3 13 23
在現實中,它這樣做...
> cbind(x)
x
[1,] "df1, df2, df3"
有沒有辦法欺騙cbind功能那裏看病字符串的內容?
任何幫助,非常感謝。
完美地工作。謝謝你的快速反應!! –