Skip to content

Commit

Permalink
Fixing issue with ttest_ind usage in old version of scipy.
Browse files Browse the repository at this point in the history
  • Loading branch information
etrain committed Mar 11, 2014
1 parent cb120ef commit 67d3914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lab5/lab5.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
" for g in groups:\n",
" for g2 in groups:\n",
" if g[0] < g2[0]:\n",
" yield g[0], g2[0], ttest_ind(g[1], g2[1], equal_var=False)[1]\n",
" yield g[0], g2[0], ttest_ind(g[1], g2[1])[1]\n",
" \n",
"testResults = pd.DataFrame(run_pairwise_tests(groups))"
],
Expand Down Expand Up @@ -293,4 +293,4 @@
"metadata": {}
}
]
}
}

0 comments on commit 67d3914

Please sign in to comment.