R 项目错误

R Project Error

你好,我现在在做一个项目,一直报错。这是我目前所拥有的:

data1 <- read.table("C:/Users/C. Pressley/Documents/Student Pair.txt", header=T)

attach(data1)
names(data1)
# [1] "Student.Pair"             "Standard.Teaching.Method" "New.Teaching.Method"     
dim(data1)
# [1] 40  3
data1[[2]]
# [1]  51  72  85  51  73  72  65  72  72  95  70  60  57  48  74  63  82  57  87  65  48  97  61  83  88  89  82  44  75  69  69  79  83  76  86  67 100  95  79  78
data1[[3]]
# [1]  67  90  82  63  76  73  78  94  85 100  80  72 100  58  89  97  88  45  81  99  69  70  47  73 100  96  99  52  74  96  84 100  84  72  97  65 100  70  83  79

help(t.test)
starting httpd help server ... done
?t.test

boxplot(data1)

plot(data1)

abline(a=0, b=1)

# Ho: Mean difference in SBP is 0
# two-sided test

t.test(a,b, paired=TRUE)
# Error in t.test(a, b, paired = TRUE) : object 'a' not found

请告诉我我做错了什么。谢谢

您的环境中没有名为 a 的变量。而且您的环境中也没有名为 b 的变量。 由于我们不知道这些功能的目的是什么,我们只能假设。但是您必须使用正确的现有参数调用函数。我只能假设你的意思是这样的:

t.test(a=data1[[2]], b=data1[[3]], paired=TRUE)

或者这样:

t.test(data1[[2]], data1[[3]], paired=TRUE)