The stargazer package for R has two arguments, covariate.labels and column.labels, that customize table text.
I want to use Greeks or math expressions in these arguments. Ive tried standard syntax for latex text and Ive tried stand R expressions, as shown below:
covariate.labels = c($\beta_{0}$, $\beta_{1}$)
covariate.labels = c(expression(beta[0]), expression(beta[1]))
Ive also tried variations on the above and Im yet to achieve the basic math symbol annotations. Any help is appreciated.