3
我是來自Stata世界的R的新手。我剛剛運行的線性模型(具有約100個變量,各有500個數據點左右),像這樣:預測預測的標準誤差
RegModel.3 <- lm(ordercount~timecount2+timecount4 .... expeditedrop, data=Dataset)
現在我想找到預測的標準誤差,如在Stata的stdf
功能,爲每個擬合值。
我嘗試下面的代碼:
predict(RegModel.3$fitted.values, new, se.fit=TRUE)
但我發現了以下錯誤:
Error in UseMethod("predict") : no applicable method for 'predict' applied to an object of class "c('double', 'numeric')"
我在做什麼錯?此外,我怎麼去類似的方式的方式使用write.csv命令導出輸出我寫的係數:
write.csv(RegModel.3$coefficients, file='results.csv')
謝謝!
當我使用預測(),我得到以下錯誤:錯誤predict.lm(RegModel.3,間隔=「預測」,se.fit = TRUE): 下標越界---你知道我爲什麼得到它嗎? – Bryan
@ user1884063請發佈一個[可重現的例子](http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) –
或至少告訴我們什麼'str(RegModel .3)'是... –