在R中,假設存在包含自變量「group」(兩組)和n個因變量的數據框「mydata」。我想運行N t個檢驗(每一個因變量),打印和通過執行在文件中保存結果如下:t檢驗循環返回「找不到對象」錯誤
variables<-names(mydata)
variables<-variables[-1] #to remove the group variable
capture.output(for(i in variables){print(t.test(get(paste("mydata$", i, sep=""))~mydata$group))},file="outputfile.txt")
該命令返回以下錯誤消息:
Error in get(paste("mydata$", i, sep = "")) : object 'mydata$variable1' not found
我在做什麼錯?
如果您使用索引,則不會出現此問題。 –
@TylerRinker我經常使用索引;但作爲低劣的程序員,我實際上並不知道它被稱爲索引 - 所以對於其他人可能不知道,請參閱此快速參考:http://thomasleeper.com/Rcourse/Tutorials/vectorindexing.html – NiuBiBang