Is it possible to make a tblregression for an ordinal logistic Regression model in R?

Viewed 24

I have built an ordinal logistic regression using the VGAM package. I would like to make a table of results to include in my report, but the tblregression doesn't seem to support these models. Is there another method that can be used?

For instance, an example of the model code is:

LMH_HCX_Clue_First <- vglm(Experience_Vaccine_First ~ HC_Copper_Coil_Jan_2020 + Age + BMI, data = df_Clue_all_First_Cycle, family = cumulative(link = "logitlink", parallel = FALSE, reverse = TRUE))

And I'd like a table that looks like this:

enter image description here

0 Answers
Related