I am using quarto to generate an HTML report. I have a regression table that I created using huxtable library.
I wanted to know how can I use math notation for the name of the coefficients.
here is the code for the table:
huxtable::huxreg(
cox1,cox2,cox3,cox4,cox5,
omit_coefs=factors,
tidy_args = list(exponentiate = TRUE),
coefs = c(
"$Ln(capacity)$" = "log(plan_cap)",
"Government Owned" = "Owner_typeGovernment",
"Noord-Holland" = "provinceN",
"Zuid-Holland" = "provinceZ")
)
However the results is:
What should I do in order to make the Ln(capacity)
appear as math equation?
I need to know this since the rest of the tables I am going to produce include equations.
Thank you.