Hi, I am running a chunk to create a table as shown below
``` {r compare.meta.metafor, echo=FALSE, cache=TRUE}
meta <- c('(+) Direct and straightforward implementation with minimal lines of code', '(+) Require a single-step workflow to perform a meta-analysis', '(+) Includes most general meta-analysis utilities (incl. meta-regression, interaction terms, modifiers, and Empirical Bayes estimators', '(+) Allows quantitative assessment of publication bias (e.g., Egger, Begg) using `metabias` function', '(-) Each data type require different functions (e.g., metabin, metacont, metaprop, metagen)', '(+) Two standout functions: `metagen` & `bubble.metareg`')
metafor <- c('(+) A more comprehensive meta-analysis package', '(-) Require an additional step (two-steps workflow) to calculate effect sizes a priori with `escalc` function', '(+) Includes most `meta` functions in addition to enhanced model-fitting capacities (e.g., log-likelihood estimates, AIC, BIC)', '(+) Allows trim-and-fill analysis with the `trimfill` function, in addition to quantitative assessments of publication bias', '(+) All meta-analysis models are built with `rma.uni` function', '(+) Standout function: Model-fitting functions')
compare.meta.metafor <- data.frame(meta, metafor)
kbl(compare.meta.metafor) %>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed"))
However, when I run the chunk, it seems that the table is not formatted (see image attached below)
Where did I go wrong?
Thank you very much for the help
Best,