Skip to content

Commit

Permalink
Merge pull request AllenDowney#37 from peterse2/patch-1
Browse files Browse the repository at this point in the history
Unresolved Reference On Line 530
  • Loading branch information
AllenDowney authored Oct 25, 2017
2 parents fd5c47d + 28242f8 commit 076c50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/thinkplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ def Cdf(cdf, complement=False, transform=None, **options):
scale['yscale'] = 'log'

if transform == 'gumbel':
xs = xp.delete(xs, 0)
xs = np.delete(xs, 0)
ps = np.delete(ps, 0)
ps = [-math.log(p) for p in ps]
scale['yscale'] = 'log'
Expand Down

0 comments on commit 076c50b

Please sign in to comment.