Skip to content

Commit

Permalink
fix iloc call in anova_report so as to include the missing last element
Browse files Browse the repository at this point in the history
  • Loading branch information
cokelaer committed May 20, 2017
1 parent 5b1d1cb commit 262bd17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdsctools/anova_report.py
Expand Up @@ -236,7 +236,7 @@ def _get_pval_range(self):
if N == 0:
return 0., 0.
name = self.varname_pval
data = self.df[name].iloc[0:N-1]
data = self.df[name].iloc[0:N]
m, M = data.min(), data.max()
return m, M

Expand Down

0 comments on commit 262bd17

Please sign in to comment.