Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a list of 100 columns in a data frame Data1. One of these variables is the dependent variable. The others are predictors.

I need to extract 99 predictors into a column (say varlist) to be used in the equation below

equation <- as.formula(paste('y', "~", paste(varlist, collapse="+"),collapse=""))

I can use dput on the dataframe to extract all the columns but I could not get rid of the dependent variable y from the list:

Varlist <- dput(names(Data1)) 
share|improve this question

1 Answer

It would be much more appropriate to go a different route. If you want to include all of the other variables in your data frame besides the response variable you can just use y ~ . to specify that.

fakedata <- as.data.frame(matrix(rnorm(100000), ncol = 100))
names(fakedata)[1] <- "y"

o <- lm(y ~ ., data = fakedata)

This fit a regression using the 99 other columns in fakedata as the predictors and 'y' as the response and stored it into 'o'


Edit: If you want to exclude some variables you can exclude those from the data set. The following removes the 10th column through the 100th column leaving a regression of y on columns 2-9

o <- lm(y ~ ., data = fakedata[,-(10:100)])
share|improve this answer
But what if there a could be other vaiables I might want to exclude as well. – Dee Jun 13 '12 at 13:35
You can remove those column from the data first. I made an edit to illustrate. – Dason Jun 13 '12 at 14:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.