一個非常簡單的爲那些其中R使用LM
full <- lm(hello~., hellow)
的深入瞭解在上述說明書中指定與所選術語模型,正在使用線性迴歸和在數據集hellow
你好被建模針對所有變量。
我在hellow
33個變量;我希望將其中的一些作爲自變量。這些變量的名稱帶有含義,所以我真的不想將它們重命名爲x1
x2
等。
如何在不必鍵入變量的個別名稱(因爲這非常繁瑣)的情況下指定從整羣中選擇一些變量?
我試圖
full <- lm(hello~hellow[,c(2,5:9)]., hellow)
,但它給了我一個錯誤"Error in model.frame.default(formula = hello ~ hellow[, : invalid type (list) for variable 'hellow[, c(2, 5:9)]'
密切相關:http://stackoverflow.com/questions/22253688/add-formula-terms-programmatically/22254121#22254121 – 2015-02-07 17:30:49