gpt4 book ai didi

r - 如何在 felm() 函数之后绘制交互的边际效应

转载 作者:行者123 更新时间:2023-12-04 10:55:34 28 4
gpt4 key购买 nike

我基于具有大量单位固定效应的“巨大”面板数据进行了回归。所以我使用了包“lfe”中的函数“felm()”。此外,我在回归中有两个连续变量的交互项。但是在绘制 x 对 y 的边际效应如何随 x2 变化时,似乎“felm()”生成的对象通常与大多数绘图函数(如“ggplot”、“interplot()”和“meplot”)不兼容。但我必须使用“felm()”,因为我需要控制大量的单位固定效应(就像人们在 Stata 中使用“reghdfe”所做的那样)。那么,我该如何在 R 中解决这个问题呢?随时让我知道一些出路。谢谢!

这是一个关于 interplot() 如何不能与 felm() 一起工作的例子:

# An example data:
library(lfe)
library(ggplot2)
library(interplot)
oldopts <- options(lfe.threads=1)
x <- rnorm(1000)
x2 <- rnorm(length(x))
id <- factor(sample(10,length(x),replace=TRUE))
firm <- factor(sample(3,length(x),replace=TRUE,prob=c(2,1.5,1)))
year <- factor(sample(10,length(x),replace=TRUE,prob=c(2,1.5,rep(1,8))))
id.eff <- rnorm(nlevels(id))
firm.eff <- rnorm(nlevels(firm))
year.eff <- rnorm(nlevels(year))
y <- x + 0.25*x2 + id.eff[id] + firm.eff[firm] +
year.eff[year] + rnorm(length(x))
mydata <- data.frame(cbind(y, x, x2, id, firm, year))

# Regression using felm():
reg1 <- felm(y ~ x + x2 + x:x2|id+firm+year|0|id, data=mydata)
summary(reg1)

# Using interplot() to plot marginal effects
interplot(m=reg1, var1="x", var2="x2", ci=0.9)

然后出现错误:

Error in (function (classes, fdef, mtable)  : 
unable to find an inherited method for function ‘sim’ for signature ‘"felm"’

我也试过 meplot() 但还是不行:

# Using meplot() to plot marginal effects
library(evir)
meplot(model=reg1, var1="x", var2="x2", int="x:x2", vcov=vcov(reg1), data=mydata)

我遇到了一个错误:

Error in meplot(model = reg1, var1 = "x", var2 = "x2", int = "x:x2", vcov = vcov(reg1),  : 
(list) object cannot be coerced to type 'double'

最佳答案

我已经使用 ggplot2coef()vcov() 来实现我想要的,手工绘制边际效应。

library(ggplot2)
beta.hat <- coef(reg1)
vcov1 <- vcov(reg1)
z0 <- seq(min(x2), max(x2), length.out = 1000)
dy.dx <- beta.hat["x"] + beta.hat["x:x2"]*z0
se.dy.dx <- sqrt(vcov1["x", "x"] + (z0^2)*vcov1["x1:x2", "x1:x2"] + 2*z0*vcov1["x", "x1:x2"])
upr <- dy.dx + 1.96*se.dy.dx
lwr <- dy.dx - 1.96*se.dy.dx
ggplot(data=NULL, aes(x=z0, y=dy.dx)) +
labs(x="x2", y="Marginal Effects",
title=paste("Marginal Effects of x on y vary with x2"),
cex=4) +
geom_line(aes(z0, dy.dx),size = 1) +
geom_line(aes(z0, lwr), size = 1, linetype = 2, color="blue") +
geom_line(aes(z0, upr), size = 1, linetype = 2, color="blue") +
geom_hline(yintercept=0, size = 1, linetype=3) +
geom_ribbon(aes(ymin=lwr, ymax=upr), alpha=0.3)

关于r - 如何在 felm() 函数之后绘制交互的边际效应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59228572/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com