Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to do a regression of a series of variables without typing each variable name

Tags:

r

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.

like image 531
evt Avatar asked May 19 '11 23:05

evt


1 Answers

Here's another alternative:

# if garisktot is in columns 20:43
modelAllHexSubscales <- lm(garisktot ~ ., data=HHdata[,20:43])
# if it isn't
modelData <- data.frame(HHdata["garisktot"],HHdata[,20:43])
modelAllHexSubscales <- lm(garisktot ~ ., data=modelData)
like image 113
Joshua Ulrich Avatar answered Nov 04 '22 01:11

Joshua Ulrich