Guest User

Untitled

a guest
Jun 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. control_conversion test_conversion
  2. day1 100 101
  3. day3 140 200
  4. day5 200 320
  5. day7 400 800
  6.  
  7. control_conversion test_conversion
  8. day1 0.10 0.10
  9. day3 0.14 0.20
  10. day5 0.20 0.32
  11. day7 0.40 0.80
  12.  
  13. control = [0.1, 0.14, 0.20, 0.40]
  14. test = [0.1,0.2,0.32,0.8]
  15.  
  16. from scipy.stats import ttest_ind
  17. control= [0.1, 0.14, 0.20, 0.40]
  18. test = [0.1,0.2,0.32,0.8]
  19. t, p = ttest_ind(control, test)
  20.  
  21. print(p)
  22. 0.42305272634988494
Add Comment
Please, Sign In to add comment