I’ve fitted this logistic model:
model <- glm(Groupe~Cluster+age, family=”binomial”,data= base)
And I’d like to present the results as a forest plot using this code:
forest_model(model, exponentiate=TRUE) but I’d like the x-axis scale to be logarithmic, which I can’t manage to do.
Thanks for your help or other alternatives.
model <- glm(Group~Cluster+age, family=”binomial”,data= base)
forest_model(model, exponentiate=TRUE)
I’d like the x-axis scale to be logarithmic
Xandrine KOUKPO is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.