如何使用 Mathematica 中的 Shapiro-Wilk 检验来检验二元正态性?

发布于 2024-12-18 18:15:14 字数 330 浏览 1 评论 0原文

我已经计算了两个列表之间的皮尔逊相关系数,现在正在尝试验证这两个数据集是否呈正态分布,以确定相关性的有效性。

从我在文档中读到的内容来看,我应该能够将多元数据与 ShapiroWilkTest 函数一起使用,但到目前为止我无法获得输出。我没有收到错误,但该过程似乎无限期地挂起。然而,我几乎可以立即通过对因变量或自变量进行单变量夏皮罗-威尔克检验来获得输出。

这是我尝试过的:

data1 = {x1,x2,x3,x4,x5,x6,x7}
data2 = {y1,y2,y3,y4,y5,y6,y7}
ShapiroWilkTest[{data1,data2}]

I've computed the Pearson correlation coefficient between two lists and am now trying to verify whether these two data sets are normally distributed in order to ascertain the validity of the the correlation.

From What I've read in the documentation, I should be able to use multivariate data with The ShapiroWilkTest function, but so far I have been unable to obtain an output. I do not receive an error, but the process hangs seemingly indefinitely. I am, however, able to obtain an output with univariate Shapiro-Wilk tests of either my dependent or independent variable almost instantly.

Here's what I've tried:

data1 = {x1,x2,x3,x4,x5,x6,x7}
data2 = {y1,y2,y3,y4,y5,y6,y7}
ShapiroWilkTest[{data1,data2}]

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

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

发布评论

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

评论(1

烏雲後面有陽光 2024-12-25 18:15:14

您是否偶然尝试过:

ShapiroWilkTest[Transpose@{data1,data2}]

我没有该功能,所以我不知道结果。

Have you by chance tried:

ShapiroWilkTest[Transpose@{data1,data2}]

I don't have that function, so I have no idea of the result.

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