I am currently preparing a table of regression results with stargazer. In this, I also want to show the t-statistics. For that, I use the following simplified specification, as also shown in http://jakeruss.com/cheatsheets/stargazer.html#report-t-statistics-or-p-values-instead-of-standard-errors
stargazer(output, output2, type = "html",
report = "vc*t")
The resulting table reports the t-statistics as follows:
0.088
t = 5.822***
Now my question: the "t =" is repeated for each model and each coefficient. This is somehow redundant and reduces readability of the table.
Is there a way to only report the value for t-statistic without the "t =" label? It would be great to just show the value in parentheses.
Thanks!