Advertisement
897bhgy

Untitled

Jul 16th, 2023 (edited)
649
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.17 KB | Source Code | 0 0
  1. # Build logistic regression model
  2. model <- glm(upgraded ~ purchases + extraCards, family = binomial, data = credit)
  3.  
  4. # Output of logistic regression model
  5. summary(model)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement