我有测量甲基化的数据。
数据:data.frame
,900
观察x 70
患者 [30 ctrl,40 例],所有值均为numeric
,无NA
s。
我使用以下代码:
group <- function(dFrame,toMatch)
{
matches <- unique (grep(paste(toMatch,collapse="|"),
colnames(dFrame), value=TRUE))
return(dFrame[matches])
}
pValue <- sapply(methySample, function(x) t.test( group (x,'case'),group (x,'ctrl'))$p.value)
Error in t.test.default(group (x, "case"), group (x, "ctrl")) :
not enough 'x' observations
我希望 pValue 是一个向量,每个观察行都有一个条目。
EDIT2:这是一个例子 - 缩短但你应该明白:
case_01 case_02 case_03 ctrl_01 ctrl_02 ...
1 0.876729 0.8760000 0.8835130 0.8999369 0.8642505
2 0.8270763 0.7983686 0.8092107 0.8610273 0.8475543
3 0.2591350 0.2829770 0.2735919 0.2556579 0.2735417
4 0.8181337 0.8007408 0.7808821 0.8097073 0.7511147
5 0.6217151 0.6061754 0.5850365 0.6151368 0.5680856
6 0.6943685 0.7605200 0.6855676 0.6687362 0.7320926
...
也许这里有人可以帮助我找出问题所在 - 也许我在这里遗漏了一些明显的东西。我已经看到其他考虑此错误消息的帖子,但答案就像“您的数据中有 NA 吗?” “哦,是的!” - 这不适用于我的问题.. 谢谢!