Guest User

Untitled

a guest
Aug 16th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Age Low-RAD51-AS1 High-RAD51-AS1 P-value
  2. <50 25 (38.5) 17 (26.6) 0.149
  3. ≥50 40 (61.5) 47 (73.4)
  4.  
  5. data <- data.frame(x= c(25, 40), y=c(17, 47))
  6. chisq.test(data, correct = T)
  7.  
  8. Pearson's Chi-squared test with Yates' continuity
  9. correction
  10.  
  11. data: data
  12. X-squared = 1.5728, df = 1, p-value = 0.2098
  13.  
  14. chisq.test(data, correct = F)
  15.  
  16. Pearson's Chi-squared test
  17.  
  18. data: data
  19. X-squared = 2.0794, df = 1, p-value = 0.1493
Add Comment
Please, Sign In to add comment