Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.54 KB | None | 0 0
  1. ====== 2 files from Michail =======
  2.  
  3. summary(rand_trans)
  4. Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
  5. 0.00000 0.04566 0.07053 0.08463 0.10230 1.00000 5
  6. > summary(depr_trans)
  7. Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
  8. 0.00000 0.02942 0.05552 0.07277 0.09864 0.40000 50
  9. >
  10. > boxplot(rand_trans)
  11. > boxplot(depr_trans)
  12. > t.test(rand_trans,depr_trans)
  13.  
  14. Welch Two Sample t-test
  15.  
  16. data: rand_trans and depr_trans
  17. t = 3.6076, df = 686.737, p-value = 0.0003315
  18. alternative hypothesis: true difference in means is not equal to 0
  19. 95 percent confidence interval:
  20. 0.005401938 0.018303804
  21. sample estimates:
  22. mean of x mean of y
  23. 0.08462655 0.07277368
  24.  
  25. > wilcox.test(rand_trans,depr_trans)
  26.  
  27. Wilcoxon rank sum test with continuity correction
  28.  
  29. data: rand_trans and depr_trans
  30. W = 512318, p-value = 4.006e-07
  31. alternative hypothesis: true location shift is not equal to 0
  32.  
  33. >
  34. > depr_vertices <- unlist(lapply(graphs, vcount))
  35. > rand_vertices <- unlist(lapply(rand_graphs, vcount))
  36. > summary(depr_vertices)
  37. Min. 1st Qu. Median Mean 3rd Qu. Max.
  38. 0.00 33.25 113.00 270.30 255.50 8399.00
  39. > summary(rand_vertices)
  40. Min. 1st Qu. Median Mean 3rd Qu. Max.
  41. 0.0 87.0 148.0 215.2 245.0 6164.0
  42. > hist(depr_vertices)
  43. > hist(rand_vertices)
  44. > t.test(rand_vertices, depr_vertices)
  45.  
  46. Welch Two Sample t-test
  47.  
  48. data: rand_vertices and depr_vertices
  49. t = -3.1404, df = 2316.838, p-value = 0.001709
  50. alternative hypothesis: true difference in means is not equal to 0
  51. 95 percent confidence interval:
  52. -89.58368 -20.71066
  53. sample estimates:
  54. mean of x mean of y
  55. 215.1820 270.3292
  56.  
  57. > wilcox.test(rand_vertices, depr_vertices)
  58.  
  59. Wilcoxon rank sum test with continuity correction
  60.  
  61. data: rand_vertices and depr_vertices
  62. W = 1933766, p-value < 2.2e-16
  63. alternative hypothesis: true location shift is not equal to 0
  64.  
  65. ================2 files from Max + 2 files from Michail=============
  66.  
  67.  
  68. summary(rand_trans)
  69. Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
  70. 0.0000 0.0457 0.0705 0.0846 0.1023 1.0000 1640
  71. > summary(depr_trans)
  72. Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
  73. 0.0000 0.0266 0.0509 0.0684 0.1009 0.3583 337
  74. >
  75. > boxplot(rand_trans)
  76. > boxplot(depr_trans)
  77. > t.test(rand_trans,depr_trans)
  78.  
  79. Welch Two Sample t-test
  80.  
  81. data: rand_trans and depr_trans
  82. t = 3.2664, df = 170.699, p-value = 0.001317
  83. alternative hypothesis: true difference in means is not equal to 0
  84. 95 percent confidence interval:
  85. 0.006437736 0.026102837
  86. sample estimates:
  87. mean of x mean of y
  88. 0.08462655 0.06835626
  89.  
  90. > wilcox.test(rand_trans,depr_trans)
  91.  
  92. Wilcoxon rank sum test with continuity correction
  93.  
  94. data: rand_trans and depr_trans
  95. W = 176080, p-value = 4.376e-05
  96. alternative hypothesis: true location shift is not equal to 0
  97.  
  98. >
  99. > depr_vertices <- unlist(lapply(graphs, vcount))
  100. > rand_vertices <- unlist(lapply(rand_graphs, vcount))
  101. > summary(depr_vertices)
  102. Min. 1st Qu. Median Mean 3rd Qu. Max.
  103. 0.0 32.0 102.0 227.2 223.0 8399.0
  104. > summary(rand_vertices)
  105. Min. 1st Qu. Median Mean 3rd Qu. Max.
  106. 0 29 100 157 199 6164
  107. > hist(depr_vertices)
  108. > hist(rand_vertices)
  109. > t.test(rand_vertices, depr_vertices)
  110.  
  111. Welch Two Sample t-test
  112.  
  113. data: rand_vertices and depr_vertices
  114. t = -6.9235, df = 5342.465, p-value = 4.924e-12
  115. alternative hypothesis: true difference in means is not equal to 0
  116. 95 percent confidence interval:
  117. -90.07711 -50.32265
  118. sample estimates:
  119. mean of x mean of y
  120. 156.9526 227.1525
  121.  
  122. > wilcox.test(rand_vertices, depr_vertices)
  123.  
  124. Wilcoxon rank sum test with continuity correction
  125.  
  126. data: rand_vertices and depr_vertices
  127. W = 6361158, p-value = 0.04784
  128. alternative hypothesis: true location shift is not equal to 0
  129.  
  130.  
  131.  
  132. =======================2 Max files with fixed users + 2 Michail files===========================
  133.  
  134. summary(rand_trans)
  135. Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
  136. 0.0000 0.0457 0.0705 0.0846 0.1023 1.0000 1640
  137. > summary(depr_trans)
  138. Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
  139. 0.0000 0.0266 0.0509 0.0684 0.1009 0.3583 337
  140. >
  141. > boxplot(rand_trans)
  142. > boxplot(depr_trans)
  143. > t.test(rand_trans,depr_trans)
  144.  
  145. Welch Two Sample t-test
  146.  
  147. data: rand_trans and depr_trans
  148. t = 3.2664, df = 170.699, p-value = 0.001317
  149. alternative hypothesis: true difference in means is not equal to 0
  150. 95 percent confidence interval:
  151. 0.006437736 0.026102837
  152. sample estimates:
  153. mean of x mean of y
  154. 0.08462655 0.06835626
  155.  
  156. > wilcox.test(rand_trans,depr_trans)
  157.  
  158. Wilcoxon rank sum test with continuity correction
  159.  
  160. data: rand_trans and depr_trans
  161. W = 176080, p-value = 4.376e-05
  162. alternative hypothesis: true location shift is not equal to 0
  163.  
  164. >
  165. > depr_vertices <- unlist(lapply(graphs, vcount))
  166. > rand_vertices <- unlist(lapply(rand_graphs, vcount))
  167. > summary(depr_vertices)
  168. Min. 1st Qu. Median Mean 3rd Qu. Max.
  169. 0.0 32.0 102.0 236.7 223.0 8399.0
  170. > summary(rand_vertices)
  171. Min. 1st Qu. Median Mean 3rd Qu. Max.
  172. 0 29 100 157 199 6164
  173. > hist(depr_vertices)
  174. > hist(rand_vertices)
  175. > t.test(rand_vertices, depr_vertices)
  176.  
  177. Welch Two Sample t-test
  178.  
  179. data: rand_vertices and depr_vertices
  180. t = -7.5816, df = 5197.853, p-value = 4.018e-14
  181. alternative hypothesis: true difference in means is not equal to 0
  182. 95 percent confidence interval:
  183. -100.4034 -59.1474
  184. sample estimates:
  185. mean of x mean of y
  186. 156.9526 236.7280
  187.  
  188. > wilcox.test(rand_vertices, depr_vertices)
  189.  
  190. Wilcoxon rank sum test with continuity correction
  191.  
  192. data: rand_vertices and depr_vertices
  193. W = 6356554, p-value = 0.04229
  194. alternative hypothesis: true location shift is not equal to 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement