Skip to content
Prev 155586 / 398502 Next

Genmod in SAS vs. glm in R

Ajay ohri wrote:

            
glm with the appropriate family (binomial) and link, I guess.

There is a book 'R for SAS and SPSS users' forthcoming

http://www.springer.com/statistics/computational/book/978-0-387-09417-5
See

library(MASS)
?stepAIC

for an example; the following might provide a useful read
on stepwise methods:

http://www.pitt.edu/~wpilib/statfaq/regrfaq.html
Fit the model using glm and 'score' using the predict method.
200 Mb isn't that large anymore, but see Thomas Lumley's biglm
package for a bounded-memory version if you're working on
limited hardware.

HTH,
Tobias