我只是运行包含固定效果的回归,在本例中是id_school。接下来,我省略了stargazer选项卡中的所有虚拟变量,这样可以节省一些空间。
问题是,我想在我的标签中包括一行,以便报告我使用了固定效果,如:Fixed Effects Yes NO ...Something like The image。
发布于 2020-06-08 10:17:02
简单的选择是使用星空add.lines
,例如
#load a panel data
data("Wages", package = "plm")
#plain vanilla OLS
model1 <- lm(lwage ~ exp + union + ed + black, data=Wages)
# Least-Squares Dummy Variables model
model2 <- lm(lwage ~ factor(ind) + exp + union + ed + black, data=Wages)
library(stargazer)
stargazer(model1, model2, omit = '[i][n][d]', type='text',
add.lines=list(c('Fixed effects', 'Yes','No'))
)
返回:
=======================================================================
Dependent variable:
---------------------------------------------------
lwage
(1) (2)
-----------------------------------------------------------------------
exp 0.013*** 0.013***
(0.001) (0.001)
unionyes 0.121*** 0.113***
(0.013) (0.013)
ed 0.079*** 0.082***
(0.002) (0.002)
blackyes -0.269*** -0.256***
(0.024) (0.024)
Constant 5.374*** 5.313***
(0.036) (0.037)
-----------------------------------------------------------------------
Fixed effects Yes No
Observations 4,165 4,165
R2 0.283 0.291
Adjusted R2 0.283 0.290
Residual Std. Error 0.391 (df = 4160) 0.389 (df = 4159)
F Statistic 411.209*** (df = 4; 4160) 341.333*** (df = 5; 4159)
=======================================================================
Note: *p<0.1; **p<0.05; ***p<0.01
如果你使用的是Latex,另一个选择是使用starpolishr available from github。这允许您设置要添加的线的位置。
library(stargazer)
library(tidyverse)
library(starpolishr)
stargazer(model1, model2, omit = '[i][n][d]', type='latex') %>%
star_insert_row(insert.after=14, 'Fixed effets & Yes & No \\\\ ') %>% cat(file='foo.tex',sep='\n')
输出:
https://stackoverflow.com/questions/62224112
复制