I want to run some regressions and create a table with stargazer. For example
linear.1 <- lm(rating ~ complaints + privileges + learning + raises + critical, data=attitude)
linear.2 <- lm(rating ~ complaints + privileges + learning, data=attitude)
stargazer(linear.1, linear.2, type="text", keep.stat=c("n"))
I want to add a couple of rows the the table with "X" for some of the specifications. That is:
rating
(1) (2)
-----------------------------------------------------------------
complaints 0.692*** 0.682***
(0.149) (0.129)
privileges -0.104 -0.103
(0.135) (0.129)
learning 0.249 0.238*
(0.160) (0.139)
raises -0.033
(0.202)
critical 0.015
(0.147)
Constant 11.011 11.258
(11.704) (7.318)
Note 1 X
Note 2 X
-----------------------------------------------------------------
Observations 30 30
=================================================================
Note: *p<0.1; **p<0.05; ***p<0.01
How can I do that?
Thanks!
stargazer(linear.1, linear.2, type="text", keep.stat=c("n"),
add.lines=list(c("Note 1", "X", ""), c("Note 2", "", "X")))
Does the trick.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With