仅使用协方差矩阵和均值的多元回归

发布于 2024-12-29 01:42:28 字数 77 浏览 0 评论 0原文

我有一个变量 y1(因变量)、x1、x2、x3(自变量)以及每个变量的相关平均值的综合协方差矩阵。如何仅使用协方差矩阵和平均值执行多元回归?

I have a comprehensive covariance matrix for variables y1 (dependent variable), x1, x2, x3 (independent variables) and the associated mean values for each variable. How can I perform multiple regression using only the covariance matrix and the mean values?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

原来分手还会想你 2025-01-05 01:42:28

我不确定我是否理解您的问题,但似乎您正在尝试找到 y1 = a1*x1 + a2*x2 + a3*x3 形式的模型。如果是这样,那么您需要解决以下线性系统:

C*a = d

其中 C 矩阵的元素为: c_ij = sum(x_i * x_j) d 向量的元素为 d_i = sum( x_i * y1)。这将为您提供您正在寻找的 a1、a2、a3 系数。

I'm not sure I understand your problem, but it seems like you're trying to find a model of the form y1 = a1*x1 + a2*x2 + a3*x3. If so, then what you need to do is solve the following linear system:

C*a = d

where the elements of the C matrix are: c_ij = sum(x_i * x_j) and the elements of the d vector are d_i = sum(x_i * y1). This will give you the a1, a2, a3 coefficients you were looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文