search for: sigvar

Displaying 1 result from an estimated 1 matches for "sigvar".

Did you mean: sigval
2008 Apr 15
1
glm syntax question
...work) VarVec <- c("Var_1","Var_2") out <- glm(Var_0~VarVec, family=binomial(link=logit), data=MyData) For (2) I would like to be able to access the table shown above (which is only part of what summary(out) displays). I'd like something like table <- summary(out) SigVars <- table[Pr(>|z|) < .001] that is collect all of the variables with a Pr(>|z|) value less than . 001. Thanks!