-
Notifications
You must be signed in to change notification settings - Fork 3
/
ttest_Orders.txt
2856 lines (2487 loc) · 69 KB
/
ttest_Orders.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
##p-value (equal or smaller than 0.05)
Arthoniales (more in warmed) - 0.05
Diaporthales (more in warmed) - 0.02
Eurotiales (more in warmed) - same as Treseder et al 2016 - 0.009
Jahnulales (more in warmed) - 0.009
Magnaporthales (more in warmed) - 0.01
Malasseziales (more in warmed) - 0.00001
Myriangiales (more in warmed) - 0.003
Patellariales (more in warmed) - 0.02
Pertusariales (more in warmed) - 0.02
Pezizales (more in warmed) - same as Treseder et al 2016 - 0.007
Pleosporales (more in warmed) - 0.02
Sordariales (more in warmed) - same as Treseder et al 2016 - 0.01
Xylariales (more in warmed) - 0.009
Lichiniales - 0.05
##ttest Acrospermales
> Input = ("
+ rank_control rank_warmed
+ 1 3
+ 1 5
+ 1 2
+ 1 2
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -2.8284, df = 3, p-value = 0.06628
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-4.2503294 0.2503294
sample estimates:
mean of x mean of y
1 3
##Agaricales
> Input = ("
+ rank_control rank_warmed
+ 111 293
+ 263 277
+ 222 260
+ 254 244
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.5331, df = 3.5457, p-value = 0.2089
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-162.74901 50.74901
sample estimates:
mean of x mean of y
212.5 268.5
##Agaricostilbales
> Input = ("
+ rank_control rank_warmed
+ 1 75
+ 1 1
+ 1 2
+ 1 1
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.018, df = 3, p-value = 0.3836
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-77.36485 39.86485
sample estimates:
mean of x mean of y
1.00 19.75
##Agyriales
> Input = ("
+ rank_control rank_warmed
+ 2 73
+ 10 13
+ 6 138
+ 15 83
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -2.6594, df = 3.0707, p-value = 0.07451
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-149.41483 12.41483
sample estimates:
mean of x mean of y
8.25 76.75
##Amylocorticiales
> Input = ("
+ rank_control rank_warmed
+ 219 102
+ 24 48
+ 32 46
+ 152 24
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = 1.0285, df = 3.7204, p-value = 0.3659
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-92.19481 195.69481
sample estimates:
mean of x mean of y
106.75 55.00
##Archaesporales
> Input = ("
+ rank_control rank_warmed
+ 2 120
+ 29 44
+ 40 37
+ 6 34
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.7587, df = 4.141, p-value = 0.151
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-101.03098 22.03098
sample estimates:
mean of x mean of y
19.25 58.75
##Arthoniales
> Input = ("
+ rank_control rank_warmed
+ 2 23
+ 5 13
+ 17 43
+ 12 32
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -2.5903, df = 4.5636, p-value = 0.0533
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-37.9053193 0.4053193
sample estimates:
mean of x mean of y
9.00 27.75
##Atheliales
> Input = ("
+ rank_control rank_warmed
+ 4 43
+ 260 143
+ 22 7
+ 30 6
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = 0.42621, df = 4.5743, p-value = 0.6893
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-152.22 210.72
sample estimates:
mean of x mean of y
79.00 49.75
data: rank_control and rank_warmed
t = -1.2057, df = 3, p-value = 0.3144
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-35.48571 15.98571
sample estimates:
mean of the differences
-9.75
##Atractelliales
> Input = ("
+ rank_control rank_warmed
+ 1 35
+ 1 3
+ 2 3
+ 2 4
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.2302, df = 3.008, p-value = 0.3061
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-34.9345 15.4345
sample estimates:
mean of x mean of y
1.50 11.25
##Auriculariales
> Input = ("
+ rank_control rank_warmed
+ 6 93
+ 5 15
+ 20 39
+ 36 25
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.3934, df = 4.0196, p-value = 0.2356
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-78.45397 25.95397
sample estimates:
mean of x mean of y
16.75 43.00
#Baeomycetales
> Input = ("
+ rank_control rank_warmed
+ 2 27
+ 6 20
+ 12 179
+ 30 65
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.6158, df = 3.1696, p-value = 0.1997
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-175.40104 54.90104
sample estimates:
mean of x mean of y
12.50 72.75
#Blastocladiales
> Input = ("
+ rank_control rank_warmed
+ 9 188
+ 61 84
+ 61 96
+ 70 73
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -2.0143, df = 4.5532, p-value = 0.1057
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-138.88727 18.88727
sample estimates:
mean of x mean of y
50.25 110.25
##Boletales
> Input = ("
+ rank_control rank_warmed
+ 191 241
+ 287 214
+ 140 136
+ 164 126
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = 0.37788, df = 5.91, p-value = 0.7187
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-89.36567 121.86567
sample estimates:
mean of x mean of y
195.50 179.25
##Boliniales
> Input = ("
+ rank_control rank_warmed
+ 5 6
+ 6 4
+ 1 9
+ 5 15
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.6087, df = 4.2266, p-value = 0.1791
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-11.432356 2.932356
sample estimates:
mean of x mean of y
4.25 8.50
##Botryosphaeriales
> Input = ("
+ rank_control rank_warmed
+ 107 150
+ 165 127
+ 118 216
+ 128 209
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.82, df = 4.7845, p-value = 0.131
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-111.86217 19.86217
sample estimates:
mean of x mean of y
129.5 175.5
##Calosphaeriales
> Input = ("
+ rank_control rank_warmed
+ 42 29
+ 31 16
+ 7 48
+ 39 128
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -0.96788, df = 3.592, p-value = 0.3937
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-102.0455 51.0455
sample estimates:
mean of x mean of y
29.75 55.25
##Candelariales
> Input = ("
+ rank_control rank_warmed
+ 3 1
+ 1 3
+ 10 2
+ 3 4
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = 0.8427, df = 3.6345, p-value = 0.4513
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-4.251786 7.751786
sample estimates:
mean of x mean of y
4.25 2.50
##Cantharellales
> Input = ("
+ rank_control rank_warmed
+ 28 137
+ 4 14
+ 20 47
+ 125 186
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.0733, df = 5.3274, p-value = 0.3293
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-173.43996 69.93996
sample estimates:
mean of x mean of y
44.25 96.00
##Capnodiales
> Input = ("
+ rank_control rank_warmed
+ 242 223
+ 238 240
+ 192 278
+ 251 285
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.2929, df = 5.9127, p-value = 0.2443
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-74.6575 23.1575
sample estimates:
mean of x mean of y
230.75 256.50
##Chaetophorales
> Input = ("
+ rank_control rank_warmed
+ 2 7
+ 2 8
+ 6 11
+ 2 19
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -2.8472, df = 3.7967, p-value = 0.04946
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-16.46767545 -0.03232455
sample estimates:
mean of x mean of y
3.00 11.25
##Chaetosphaeriales
> Input = ("
+ rank_control rank_warmed
+ 2 9
+ 2 8
+ 2 11
+ 17 96
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.1479, df = 3.1794, p-value = 0.33
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-93.07352 42.57352
sample estimates:
mean of x mean of y
5.75 31.00
#Chaetothyriales
> Input = ("
+ rank_control rank_warmed
+ 256 264
+ 239 190
+ 152 294
+ 247 290
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.0565, df = 6, p-value = 0.3314
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-119.37474 47.37474
sample estimates:
mean of x mean of y
223.5 259.5
##Chytridiales
> Input = ("
+ rank_control rank_warmed
+ 148 67
+ 61 70
+ 53 88
+ 40 31
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = 0.42126, df = 4.3434, p-value = 0.6936
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-61.98901 84.98901
sample estimates:
mean of x mean of y
75.5 64.0
##Cladochytriales
> Input = ("
+ rank_control rank_warmed
+ 153 208
+ 78 91
+ 97 134
+ 53 96
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.0764, df = 5.6852, p-value = 0.3253
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-122.24791 48.24791
sample estimates:
mean of x mean of y
95.25 132.25
##Cladophorales (same abundance)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = NaN, df = 3, p-value = NA
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
NaN NaN
sample estimates:
mean of the differences
0
##Coniochaetales
> Input = ("
+ rank_control rank_warmed
+ 44 17
+ 23 232
+ 121 230
+ 176 248
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_warmed <- c(Data$rank_warmed)
> rank_control <- c(Data$rank_control)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.3874, df = 5.11, p-value = 0.2228
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-257.8105 76.3105
sample estimates:
mean of x mean of y
91.00 181.75
##Coronophoales (Same abundance)
NA
#Corticiales
> Input = ("
+ rank_control rank_warmed
+ 12 112
+ 9 12
+ 32 11
+ 51 76
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -0.99919, df = 3.9011, p-value = 0.3756
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-101.82976 48.32976
sample estimates:
mean of x mean of y
26.00 52.75
##Cystofilobasidiales
> Input = ("
+ rank_control rank_warmed
+ 60 50
+ 2 6
+ 8 31
+ 167 83
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = 0.40353, df = 4.0487, p-value = 0.707
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-97.9522 131.4522
sample estimates:
mean of x mean of y
59.25 42.50
#Dacrymycetales
> Input = ("
+ rank_control rank_warmed
+ 2 226
+ 5 13
+ 33 55
+ 12 67
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.6357, df = 3.1342, p-value = 0.1965
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-223.97072 69.47072
sample estimates:
mean of x mean of y
13.00 90.25
##Diaporthales
> Input = ("
+ rank_control rank_warmed
+ 7 40
+ 14 49
+ 32 72
+ 26 94
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -3.2876, df = 4.2488, p-value = 0.0277
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-80.316771 -7.683229
sample estimates:
mean of x mean of y
19.75 63.75
##Dimargaritales
NA (same)
##Diversisporales
> Input = ("
+ rank_control rank_warmed
+ 4 206
+ 49 60
+ 71 66
+ 18 59
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.59, df = 4.0194, p-value = 0.1867
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-170.74423 46.24423
sample estimates:
mean of x mean of y
35.50 97.75
##Doassansiales
> Input = ("
+ rank_control rank_warmed
+ 1 1
+ 1 3
+ 2 5
+ 1 2
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.6859, df = 3.5105, p-value = 0.177
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-4.112312 1.112312
sample estimates:
mean of x mean of y
1.25 2.75
##Dothideales
> Input = ("
+ rank_control rank_warmed
+ 124 119
+ 50 89
+ 87 203
+ 91 170
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.9307, df = 4.8814, p-value = 0.1128
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-134.03292 19.53292
sample estimates:
mean of x mean of y
88.00 145.25
##Echinosteliales (same abundance)
NA
##Endogonales
> Input = ("
+ rank_control rank_warmed
+ 17 121
+ 10 46
+ 123 108
+ 66 79
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.1124, df = 5.0912, p-value = 0.3157
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-113.79855 44.79855
sample estimates:
mean of x mean of y
54.0 88.5
#Entomophtorales
> Input = ("
+ rank_control rank_warmed
+ 55 282
+ 177 180
+ 163 212
+ 159 205
+
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -2.2823, df = 5.6574, p-value = 0.06523
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-169.653144 7.153144
sample estimates:
mean of x mean of y
138.50 219.75
##Entorrhizales
> Input = ("
+ rank_control rank_warmed
+ 1 82
+ 1 2
+ 20 4
+ 2 10
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -0.93429, df = 3.3526, p-value = 0.4124
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-77.92766 40.92766
sample estimates:
mean of x mean of y
6.0 24.5
#Entylomatales
> Input = ("
+ rank_control rank_warmed
+ 1 11
+ 1 4
+ 2 8
+ 1 3
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -2.8146, df = 3.1097, p-value = 0.06431
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-11.0693219 0.5693219
sample estimates:
mean of x mean of y
1.25 6.50
#Erythrobasidiales
> Input = ("
+ rank_control rank_warmed
+ 2 221
+ 1 15
+ 6 20
+ 3 6
+
+ ")
> Data = read.table(textConnection(Input),header=TRUE)
> rank_control <- c(Data$rank_control)
> rank_warmed <- c(Data$rank_warmed)
> t.test(rank_control,rank_warmed,paired=FALSE)
Welch Two Sample t-test
data: rank_control and rank_warmed
t = -1.2036, df = 3.0026, p-value = 0.315
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-227.669 102.669
sample estimates:
mean of x mean of y
3.0 65.5
#Eurotiales
> Input = ("
+ rank_control rank_warmed
+ 125 217
+ 130 233
+ 134 274
+ 213 295
+
+