两个样本t test/txt文件数据集的错误消息

发布于 2025-01-13 16:24:11 字数 788 浏览 0 评论 0原文

在我的数据集上使用 t.test() 后,我收到一条错误消息。数据集是一个txt文件,t.test函数在其他类型的数据集(如dat和csv)上运行良好

这是我的代码:

petro <- read.table(file.choose(), header = TRUE, sep = "\t")
head(petro)

# two independent sample t test
t.test(petro$Canberra, petro$Perth, var.equal = TRUE)

运行t.test函数后,错误消息如下:

*Error in if (stderr < 10 * .Machine$double.eps * abs(mx)) stop("data are essentially constant") : 
  missing value where TRUE/FALSE needed
In addition: Warning messages:
1: In mean.default(x) : argument is not numeric or logical: returning NA
2: In var(x) : NAs introduced by coercion*

< a href="https://i.sstatic.net/YqsgY.png" rel="nofollow noreferrer">在此处输入图像描述

I got an error message after I used t.test() on my datasets. The dataset is a txt file, the t.test function works well on other types of datasets like dat and csv

Here's my code:

petro <- read.table(file.choose(), header = TRUE, sep = "\t")
head(petro)

# two independent sample t test
t.test(petro$Canberra, petro$Perth, var.equal = TRUE)

After I run the t.test function, the error message was like:

*Error in if (stderr < 10 * .Machine$double.eps * abs(mx)) stop("data are essentially constant") : 
  missing value where TRUE/FALSE needed
In addition: Warning messages:
1: In mean.default(x) : argument is not numeric or logical: returning NA
2: In var(x) : NAs introduced by coercion*

enter image description here

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文