I realise this might not be a very descriptive question, but I essentially want to know if this question has an answer yet.
I have a regression whose results I'd like to output in a table using stargazer
, like so:
> stargazer(model1, type = "text", report = "vcsp", single.row = T)
==========================================
Dependent variable:
---------------------------
enter
------------------------------------------
male -0.148 (0.148)
p = 0.316
------------------------------------------
Observations 183
Log Likelihood -1,052.273
==========================================
Note: *p<0.1; **p<0.05; ***p<0.01
The output I want is this:
======================================================================
Dependent variable: enter
-------------------------------------------------------
coefficient se p-value
----------------------------------------------------------------------
male -0.148 (0.148) 0.316
----------------------------------------------------------------------
Observations 183
Log Likelihood -1,052.273
======================================================================
Note: *p<0.1; **p<0.05; ***p<0.01
Is there any way to do this using stargazer
? Any help is appreciated.