Answers for "a problem of predicting whether a student succeed or not based of his GPA and GRE. for logistic regression"

0

a problem of predicting whether a student succeed or not based of his GPA and GRE. for logistic regression

## odds ratios only
exp(coef(mylogit))
Posted by: Guest on January-29-2021
0

a problem of predicting whether a student succeed or not based of his GPA and GRE. for logistic regression

mydata$rank <- factor(mydata$rank)
mylogit <- glm(admit ~ gre + gpa + rank, data = mydata, family = "binomial")
Posted by: Guest on January-29-2021

Code answers related to "a problem of predicting whether a student succeed or not based of his GPA and GRE. for logistic regression"

Python Answers by Framework

Browse Popular Code Answers by Language