Displaying 1 result from an estimated 1 matches for "col_s1".
Did you mean:
col_1
2009 Apr 14
1
mean fold change issues and p values
...t test
p.wilcox = rep(NA, nrow) #non-parametric test -- Mann-Whitney test
fold.mean <- rep(NA, nrow)
mean.na <- rep(NA, nrow)
mean.nb <- rep(NA, nrow)
sig.peak.all = data.norm.test
g_1 = sig_test[1]
g_2 = sig_test[2]
col_s1 = 1; col_s2 = 1;
for(i in 1:group){
if(i < g_1)
col_s1 = col_s1+group_size[i]
if(i < g_2)
col_s2 = col_s2+group_size[i]
}
col_e1 = col_s1+group_size[g_1]-1
col_e2 = col_s2+group_size[g_2]-1...