Displaying 1 result from an estimated 1 matches for "346935".
Did you mean:
346.35
2009 Apr 23
1
suppress output from step function
Dear all,
Is there a way of using the step function on a linear model such that all the steps are not printed out?
Say I have a matrix X of 50 explanatory variables and a binary response Y.
linear_model<-glm(Y~X, data=my_data, family="binomial")
SS<-step(linear_model)
This last step produces all the output that would have been produced even if I hadn't named the result SS.