Skip to content

Commit

Permalink
py[BF] fixed a bug in potting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingo Fründ committed Sep 9, 2010
1 parent 318666f commit 4a24323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypsignifit/psigniplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def plotHistogram ( simdata, observed, xname, shortname=None, ax=None, hideobser
# ytics = p.getp(ax,"yticks")
# xr = xtics.max()-xtics.min()
# yy = [ytics.min(),ytics.max()+0.02*xr]
yy = N.array(ax.get_ylim ())
yy = p.array(ax.get_ylim ())
yy[1] += 0.02*(yy[1]-yy[0])

# Plot percentile bars
Expand Down

0 comments on commit 4a24323

Please sign in to comment.