在這個真棒論壇上,我看到一篇文章,演示如何將字符串轉換爲變量並將數據框分配給該變量。例如:用一個字符串指定的名稱保存一個R數據框
X = 「thisisthestring」
# df is a data frame
assign(x, df) # This will assign data frame df to variable thisisthestring
我想要做的就是保存這個數據幀的名稱thisisthestring
。但是,如果我嘗試
assign(x, df)
save(x, file='somefilename.rda')
該文件只包含一個字符串「thisisthestring」而不是數據幀df。
我也試過
save(assign(x, df), file = 'somefile.rda'))
,不能正常工作。任何建議如何將數據框保存到文件中,其中數據框的名稱由字符串指定。
可能重複[如何保存()與特定變量名稱](http://stackoverflow.com/questions/4675755/how-to-save-with-a-particular-變量名稱) – 2011-12-01 17:44:10
不是該問題的重複。 – Mars 2014-10-23 03:57:39