how do i exclude specific variables from a glm in R?

前端 未结 1 1361
再見小時候
再見小時候 2020-12-11 00:23

I have 50 variables. This is how I use them all in my glm.

var = glm(Stuff ~ ., data=mydata, family=binomial)

But I want to exclude 2 of th

相关标签:
1条回答
  • 2020-12-11 01:04

    In addition to using the - like in the comments

    glm(Stuff ~ . - var1 - var2, data= mydata, family=binomial)

    you can also subset the data frame passed in

    glm(Stuff ~ ., data=mydata[ , !(names(mydata) %in% c('var1','var2'))], family=binomial)

    or

    glm(Stuff ~ ., data=subset(mydata, select=c( -var1, -var2 ) ), family=binomial )
    

    (be careful with that last one, the subset function sometimes does not work well inside of other functions)

    You could also use the paste function to create a string representing the formula with the terms of interest (subsetting to the group of predictors that you want), then use as.formula to convert it to a formula.

    0 讨论(0)
提交回复
热议问题