查看原文
其他

Stata:图示连续变量的边际效应(交乘项)

连享会 连享会 2022-12-31

👇 连享会 · 推文导航 | www.lianxh.cn

「十年口碑,桃李三千」
🎦 2021 Stata 暑期班:   高级 | 论文

📅 2021 年 7 月 24-30 日

🔑 初级已开课,可报:高级 | 论文

🍓 课程主页https://gitee.com/lianxh/PX

作者:连玉君 (中山大学)
E-Mail: arlionn@163.com


目录

  • 背景

  • 命令解释和帮助文件

  • Examples

  • References


背景

交乘项的使用越来与普遍。Stata 官方提供的 margins 以及 marginsplot 命令可以很好地分析和图示边际效果。其局限在于只能呈现特定数值上的边际效应,而无法连续的呈现边际效应。

外部命令 interflex 可能弥补这一局限。

这里介绍的 marginscontplot2 也可以很好地实现这一分析目的。其他相关资料可以参考 连享会·交乘项专题 和 连享会 回归分析专题。

命令解释和帮助文件

marginscontplot2 provides a graph of the marginal effect of a continuous predictor on the response variable in the most recently fitted regression model. See Royston (2013) for details and examples; the paper is available at http://www.stata-journal.com/article.html?article=gr0056.

  • help marginscontplot2 // Graph margins for continuous predictors

Examples

*-Basic examples
sysuse auto, clear
regress mpg i.foreign weight
marginscontplot2 weight, name(my_graph)
marginscontplot2 weight, at1(2000(100)4500) ci
marginscontplot2 weight foreign, var1(20) at2(0 1)
marginscontplot2 weight foreign, var1(20) at2(0 1) ///
ci combopts(ycommon imargin(small))

*-Example using a log-transformed covariate
gen logwt = log(weight)
regress mpg i.foreign c.logwt i.foreign#c.logwt
quietly summarize weight
range w1 r(min) r(max) 20
generate logw1 = log(w1)
marginscontplot2 weight (logwt), var1(w1 (logw1)) ci

输出效果:

marginscontplot2 - 输出效果

References

  • Royston, P. 2013. marginscontplot2: Plotting the marginal effects of continuous predictors.  Stata Journal, 13(3): 510-527. -PDF-,-Link to Stata Journal-

New! Stata 搜索神器:lianxhsongbl  GIF 动图介绍
搜: 推文、数据分享、期刊论文、重现代码 ……
👉 安装:
. ssc install lianxh
. ssc install songbl
👉  使用:
. lianxh DID 倍分法
. songbl all

🎦 🎦 🎦
🎧 暑期 空间计量专题
📅 2021 年 8 月 21-24 日
🔑 范巧 (兰州大学);杨海生 (中山大学)
🍓 课程主页https://gitee.com/lianxh/SP

🍏 关于我们

  • 连享会 ( www.lianxh.cn ) 由中山大学连玉君老师团队创办,定期分享实证分析经验。
  • 直通车: 👉【百度一下:连享会】即可直达连享会主页。亦可进一步添加 「知乎」,「b 站」,「面板数据」,「公开课」 等关键词细化搜索。


您可能也对以下帖子感兴趣

文章有问题?点此查看未经处理的缓存