线性回归因子
给定一个点列表,我需要对它们进行简单的线性回归。这部分非常简单,代码示例可以在很多地方找到。
我的问题是确定回归因子(测量点在直线上的拟合程度)。我如何使用 Lua 以编程方式确定这样的因素?
Given a list of points, I need to achieve a simple linear regression on them. This part is quite easy and code examples can be found in a lot of places.
My problem is determining the regression factor (measuring how much the points fit on the line). How could I determine such a factor programmatically, using Lua?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不确定你的意思是:回归因子,但正如这篇维基百科文章所述:MSE
它看起来像您正在寻找的因素。
您可以在维基百科文章中获取有关 MSE 计算的详细信息。
希望我理解你的问题并且有帮助
Not sure about what you mean by : regression factor, but as said on this wikipedia article : MSE
it looks like the factor you're looking for.
You can get the details on the calculations of MSE in the wikipedia article.
Hope I understood your issue and it helps
也许 http://en.wikipedia.org/wiki/Pearson_product-moment_correlation_coefficient 就是您想要的想。
Maybe http://en.wikipedia.org/wiki/Pearson_product-moment_correlation_coefficient is what you want.