I would like to know how to transform the format of the confidence interval output from sjPlot::tab_model. I want to have the confidence intervals shown in [] square breaks, with the numbers separated by a comma.
This is an example of the default CI from the sjPlot output: 0.28 - 2.1 I would like to have the ci to be the format: [0.28, 2.1] I tried the code:
sjPlot::tab_model(my_model, ci.hyphen ="[ , ]")
ButI found the ci turned out to be: 0.28[,]2.1
May I know how to fix this?