边缘图的最佳拟合线

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了边缘图的最佳拟合线相关的知识,希望对你有一定的参考价值。

我试图创建一个边距图并添加一条最适合绘制边际值的线以显示趋势,因为边距是绘制在年度虚拟对象上的。边缘图可以在这里看到,其中红线显示我想要获得的结果(但只是我已经绘制的估计线):https://imgur.com/a/Uh2Q5

我的数据快照(仅限于与此帖相关的变量)可以在这里看到:https://imgur.com/a/FqsWm

如何在边缘图上实现这条拟合线的任何建议都将非常感谢!

谢谢

答案

目前尚不清楚您想要绘制什么样的边距以及底层模型是什么,但这里有一些代码可以帮助您入门:

sysuse auto, clear
reg price i.rep78 c.weight
eststo margins: margins rep78, post
// eststo margins: margins, dydx(rep78) post

/* store margins output as a variable */
local levels: colnames e(b)
gen margins = .
foreach j of local levels  {
    replace margins = _b[`j'] if `j'==1
}

/* run a regression on the output of margins */
reg margins c.rep78
eststo lfit: margins, over(rep78) post

/* plot both margins and linear approximation */
coefplot (margins) (lfit, recast(line) offset(0)), vertical xlabel(, alternate)

drop margins

这会产生:

enter image description here

coefplot来自SSC。


以下是评论中问题的解决方案:

sysuse auto, clear
reg price c.mpg##i.rep78 c.weight
margins r.rep78, dydx(mpg) post
/* store interaction coefficients as a variable */
local levels: colnames e(b)
gen margins = .
foreach j of local levels  {
    replace margins = _b[`j'] if `j'==1
}
/* plot margins with added line */
marginsplot, addplot(lfit margins rep78) recast(scatter) legend(off)

以上是关于边缘图的最佳拟合线的主要内容,如果未能解决你的问题,请参考以下文章

最佳拟合线与R中的阈值

最有用的25个 Matplotlib图(含Python代码模板)

最有用的25个 Matplotlib图(含Python代码模板)

如何用matlab实现对边缘检测后的图像的边缘细化和曲线拟合?

如何在 Python 中测量最佳拟合线的质量? [复制]

Python数据可视化之绘制带有最佳拟合线的散点图(图文并茂版!!!)