Is there a way to present results from univariate analysis of multinomial gee model (perhaps using multgee package) using tbl_uvregression from daniel sjobergs gtsummary package?
I found a previous answer for a multinomial model: multinomial logistic regression results table in wide format using the gtsummary package
Would it be possible to do something like that for the multinomial gee model and while removing NAs from variables when running multiple univariate regressions with tbl_uvregression?
Code for running multinomial gee model from the package document for a nominal multinomial outcome:
library(multgee)
data(housing)
fitmod <- nomLORgee(y ~ factor(time) * sec, data = housing, id = id, repeated = time)