R语言 对Panel数据的“部分”运行回归

n53p2ov0  于 2023-01-22  发布在  其他
关注(0)|答案(1)|浏览(163)

我正在处理2020年2月3日至2020年5月29日的面板数据。为了检验我的假设,我需要对整个时期以及另外3个不同时期运行相同的回归:
1.二零二零年二月三日至二零二零年二月二十一日
1.二零二零年二月二十四日至二零二零年四月十日
1.二零二零年四月十三日至二零二零年五月二十九日
在R中有简单的方法吗?我正在使用plm包运行一个Pooled OLS回归,随后我还需要运行一个Difference-in-Difference回归。我的数据结构如下:
| 识别号|日期|自变量|
| - ------|- ------|- ------|
| 1个|二○二○年二月三日|...|
| 1个|二○二○年二月四日|...|
| 1个|...|...|
| 1个|二○二○年五月二十九日|...|
| 第二章|二○二○年二月三日|...|
| 第二章|二○二○年二月四日|...|
| ...|...|...|
我不知道如何分解指定时间戳的回归。我只知道如何运行整个时间段的回归。

ddrv8njm

ddrv8njm1#

正如评论员所建议的,任何形式的子集都可以。这里是一个tidyverse方法,你可以在plm回归中过滤。

library(plm)
library(tidyverse)
library(stargazer)

model_plm_all <- plm(pcap ~ unemp + water + util + pc + gsp, 
                 data=Produc, 
                 effect = "individual", model = "within", 
                 index=c("state", "year"))

model_plm_region5 <- plm(pcap ~ unemp + water + util + pc + gsp, 
                 data=Produc %>%filter(region == 5), 
                 effect = "individual", model = "within", 
                 index=c("state", "year"))

model_plm_region6 <- plm(pcap ~ unemp + water + util + pc + gsp, 
                         data=Produc %>%filter(region == 6), 
                         effect = "individual", model = "within", 
                         index=c("state", "year"))

stargazer(model_plm_all, model_plm_region5, model_plm_region6, type="text",
          column.labels = c("All", "Region 5", "Region 6"), model.numbers = FALSE)

==========================================================================================
                                          Dependent variable:                             
             -----------------------------------------------------------------------------
                                                 pcap                                     
                        All                      Region 5                 Region 6        
------------------------------------------------------------------------------------------
unemp                92.486***                  94.759***                   4.667         
                      (11.648)                   (23.912)                 (27.650)        
                                                                                          
water                 0.759***                   1.110***                  0.637**        
                      (0.040)                    (0.155)                   (0.284)        
                                                                                          
util                  1.316***                   1.193***                 0.730***        
                      (0.017)                    (0.066)                   (0.149)        
                                                                                          
pc                     0.006                     0.039**                  0.127***        
                      (0.004)                    (0.017)                   (0.030)        
                                                                                          
gsp                    0.006                      0.001                    -0.022         
                      (0.004)                    (0.015)                   (0.029)        
                                                                                          
------------------------------------------------------------------------------------------
Observations            816                        136                       68           
R2                     0.970                      0.984                     0.960         
Adjusted R2            0.968                      0.982                     0.954         
F Statistic  4,899.365*** (df = 5; 763) 1,511.193*** (df = 5; 123) 280.529*** (df = 5; 59)
==========================================================================================
Note:                                                          *p<0.1; **p<0.05; ***p<0.01

相关问题