- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将此回归的系数绘制为森林图。
-------------------------------------------------------------------------------
price | Coefficient Std. err. t P>|t| [95% conf. interval]
--------------+----------------------------------------------------------------
foreign#rep78 |
Domestic#1 | -781.769 1013.428 -0.77 0.443 -2805.724 1242.186
Foreign#0 | -1529.739 1771.487 -0.86 0.391 -5067.642 2008.164
Foreign#1 | -81.34985 848.0347 -0.10 0.924 -1774.992 1612.292
|
_cons | 6358.405 485.1416 13.11 0.000 5389.511 7327.3
-------------------------------------------------------------------------------
由 coefplot
(社区提供的命令)生成的森林图仅绘制最后一个系数 (-81),而不绘制其他系数(-782 和 -1530)。我哪里错了?
sysuse auto, clear
recode rep78 (1/3=0) (4/5=1)
reg price i.foreign#i.rep78
* Only plots last coefficient (-81)
coefplot, keep(*.foreign#*.rep78) mlabel
* Doesn't work either
coefplot, keep(0.foreign#1.rep78 1.foreign#0.rep78 1.foreign#1.rep78) mlabel
最佳答案
coefplot
会自动排除标记为“省略”或“基本水平”的系数——就像您的系数一样。要在图中包含所有系数,您应该指定“省略”和“基线”选项。所以它看起来像这样:
sysuse auto, clear
recode rep78 (1/3=0) (4/5=1)
reg price i.foreign#i.rep78
coefplot, omitted baselevels mlabel
此处提供了有关该软件包的更多详细信息:http://repec.sowi.unibe.ch/stata/coefplot/getting-started.html
关于stata - 为什么 coefplot 不绘制 Stata 中所有级别的交互?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71404316/
在 Stata 中进行回归后,我试图仅绘制交互项的系数。 我无法使用 community-contributed 命令 coefplot 执行此操作。 这是一个可重现的示例和我尝试的解决方案: sys
我想将此回归的系数绘制为森林图。 -------------------------------------------------------------------------------
嗨,我正在使用 r 中的 coefplot 函数来绘制广义线性模型的系数。我想将 95% CI 线的颜色更改为与 50% CI 线不同的颜色。颜色参数默认 95% 和 50% CI 线使用相同的颜色。
假设您想要绘制回归系数图,其中对交互作用进行了分组和重命名。按照 -coefplot- 论文(Jann,2014)中的示例,以下代码允许您对交互进行分组: * BEGIN * sysuse auto,
我是一名优秀的程序员,十分优秀!