Skip to content

Commit f0dc361

Browse files
author
cclauss
authored
Fix typo: xp.delete() --> np.delete()
1 parent 79f5720 commit f0dc361

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scipy/thinkplot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ def Cdf(cdf, complement=False, transform=None, **options):
472472
scale['yscale'] = 'log'
473473

474474
if transform == 'gumbel':
475-
xs = xp.delete(xs, 0)
475+
xs = np.delete(xs, 0)
476476
ps = np.delete(ps, 0)
477477
ps = [-math.log(p) for p in ps]
478478
scale['yscale'] = 'log'

0 commit comments

Comments
 (0)