I'm having errors with the normal t-test:
data <- read.table("/Users/vdas/Documents/RNA-Seq_Smaples_Udine_08032013/GBM_29052013/UD_RP_25072013/filteredFPKM_matrix.txt",sep="",header=TRUE,stringsAsFactors=FALSE)
PGT <- cbind(data[,2],data[,7],data[,24])
PDGT <- cbind(data[,6],data[,8])
pval2 <- NULL
for(i in 1:length(PGT[,1])){
pval2 <- c(pval2,t.test(as.numeric(PDGT[i,]),as.numeric(PGT[i,]))$p.value)
print(i)
}
Error:
Error in t.test.default(as.numeric(PDGT[i, ]), as.numeric(PGT[i, ])) :
not enough 'x' observations
I cannot understand what went wrong with the vector. Can you please tell me? I have not been able to figure it out .
Most likely your data have
NA
values. For example: -From you comment, It seems that error come due to the missing value. You can exclude the missing values by setting
na.rm=TRUE
. Ref:- Missing value . Before posting R question take a look at How to make a great R reproducible example?To remove
NA
values you do: