Stargazer is an R package that produces LaTeX code for well-formatted tables that hold regression analysis results from several models side-by-side, as well as summary statistics.
Stargazer is an r package that produces latex code for well-formatted tables that hold regression analysis results from several models side-by-side, as well as summary statistics.
I have some issues with the stargazer module. I am trying to do replication studies for my B.A. thesis and I want to match the table layouts of the papers.
There are 2 things I want to do
a) Omit the variable pop_gg and put in a line at the bottom…
It is my first time posting questions here.
I'm dealing with a case where I use time series data to do simple ols estimate, by using dynlm. Also, I want to replace the standard error by HAC estimator with some conventional truncated value as the…
I have two very simple regressions:
foo <- lm(log(y*30) ~ x, data=myDt[y > 0])
bar <- lm(log(y*30) ~ x + d1 + d2,
data=myDt[y > 0])
where d1, d2 are factor variables with many different values and myDt is a data.table. Note that the…