Lab 5: Binary Logistic Regression
library(pander) #pander()
library(psych) # describe()
library(gtsummary) #tbl_summary()
library(equatiomatic) # extract_eq()
library(sjPlot) # tab_xtab(), tab_model()
library(tidyverse)
This lab follows along the logistic regression lecture presented in class and provides two examples to demonstrate the models and their interpretation.
What is Binary Logistic Regression?
-
It is a regression with an outcome variable (or dependent variable) that is dichotomous/binary (i.e., only two categories, such as Yes or No, 0 or 1, Disorder or No Disorder, Win or Lose).
