I want to run a regression with a bunch of independent variables from my dataset. There are a lot of predictors, so I do not want to write them all out. Is there a notation to span multiple columns so I don't have to type each?
My attempt was doing this (where my predictors are column 20 to 43):
modelAllHexSubscales = lm(HHdata$garisktot~HHdata[,20:43])
Obviously, this does not work because HHdata[,20:43]
is a matrix of data, whereas I really need it to see the data as HHdata[,20]+HHdata[,21]
etc.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…