I have df that consists of 7 columns each corresponding to a chromosome. I would like to see if the values in each of the chromosome is statistically significant with other chromosomes. Here is the sub-set of the df...
A01 A02 A03 A04 A05 A06 A07
1 0.0475424 0.224646 0.1065940 0.1580800 0.0279520 0.8189890 0.2721350
2 0.0383661 0.133959 0.0579846 0.0300916 0.1662380 0.0735981 0.2863390
3 0.2999830 0.407670 0.1696190 0.0379608 0.0544481 0.1532610 0.1041220
4 0.1605930 0.729948 0.0642579 0.4513340 0.3155020 0.3234300 0.7930150
5 0.5301730 0.100597 0.1850310 0.1111630 0.1000220 0.2172030 0.0748173
6 0.0268711 1.278470 0.0958172 0.5504090 0.3600080 0.0355549 0.3678820
I know i can just use t-test
to compare "A01" to "A02" and so on. But it will tell me if those two chromosome are significant or not but my plan is to compare A01
with all other chromosomes. How can i do that?
Thanks
Upendra