How to run a descriptive analysis on ordinal DV, and IV?
I have a dataset with several ordinal variables. I would like to conduct some descriptive analysis to see the relationship between IV and DV. After cleaning the data, I am running the following function, but it is returning for p-values all 1s. I am assuming is because my DV is ordinal.
datalogit <- glm(DV~IV+IV+IV, data=data, family= binomial(link = "logit")
summary(datalogit)