我有两个data.frames:
word1=c("a","a","a","a","b","b","b")
word2=c("a","a","a","a","c","c","c")
values1 = c(1,2,3,4,5,6,7)
values2 = c(3,3,0,1,2,3,4)
df1 = data.frame(word1,values1)
df2 = data.frame(word2,values2)
df1:
word1 values1
1 a 1
2 a 2
3 a 3
4 a 4
5 b 5
6 b 6
7 b 7
DF2:
word2 values2
1 a 3
2 a 3
3 a 0
4 a 1
5 c 2
6 c 3
7 c 4
我想将这些数据框拆分为word*
,并在R中执行两个示例t.test
。
例如,单词“a”在两个data.frames中。单词“a”的data.frames之间的t.test
是多少?并对data.frames中的所有单词执行此操作。
结果是data.frame(结果):
word tvalues
1 a 0.4778035
由于
答案 0 :(得分:0)
找到两个数据帧共有的单词,然后循环遍历这些单词,对两个数据帧进行子集化并在子集上执行t.test
。
E.g:
df1 <- data.frame(word=sample(letters[1:5], 30, replace=TRUE),
x=rnorm(30))
df2 <- data.frame(word=sample(letters[1:5], 30, replace=TRUE),
x=rnorm(30))
common_words <- sort(intersect(df1$word, df2$word))
setNames(lapply(common_words, function(w) {
t.test(subset(df1, word==w, x), subset(df2, word==w, x))
}), common_words)
这将返回一个列表,其中每个元素是t.test
的输出,用于其中一个常用词。 setNames
只是命名列表元素,以便您可以看到它们对应的单词。
注意我在这里创建了新的示例数据,因为您的示例数据只有一个共同的单词(a
),因此并不真正类似于您的真实问题。
如果您只想要一个统计矩阵,您可以执行以下操作:
t(sapply(common_words, function(w) {
test <- t.test(subset(df1, word==w, x), subset(df2, word==w, x))
c(test$statistic, test$parameter, p=test$p.value,
`2.5%`=test$conf.int[1], `97.5%`=test$conf.int[2])
}))
## t df p 2.5% 97.5%
## a 0.9141839 8.912307 0.38468553 -0.4808054 1.1313220
## b -0.2182582 7.589109 0.83298193 -1.1536056 0.9558315
## c -0.2927253 8.947689 0.77640684 -1.5340097 1.1827691
## d -2.7244728 12.389709 0.01800568 -2.5016301 -0.2826952
## e -0.3683153 7.872407 0.72234501 -1.9404345 1.4072499