Displaying 1 result from an estimated 1 matches for "sub1_o".
Did you mean:
sub1_c
2006 Oct 09
0
Information_content_test
...sed methodology. I
would like to test, for a cluster of elements (for ex. elements 1 to
10, versus 11 to 154) the significance of occurence of the counts for
each sub-element (66241).
I could test them one by one like this:
sub1<-c(0,2,0,6,3,2,5,4,3,...
sub1_C<-c(sub1[1],sub1[2],sub1[3],...
sub1_O<-c(sub1[11],sub1[12],sub1[13],...
t.test(sub1_C, sub1_O,
alternative = c("greater"),
mu = 0, paired = FALSE, var.equal = FALSE,
conf.level = 0.95)
QUESTION 1: how could this be BATCH done for all elements - loading
data in a table, matrix or data.frame (testing th...