Skip to content

Commit

Permalink
MAINT: fix typo in stats tutorial. Closes scipygh-4911.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
rgommers committed May 26, 2015
1 parent 831dd2b commit 44b596e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/tutorial/stats.rst
Expand Up @@ -904,7 +904,7 @@ is called a rug plot):
>>> ax.plot(x1, np.zeros(x1.shape), 'b+', ms=20) # rug plot
>>> x_eval = np.linspace(-10, 10, num=200)
>>> ax.plot(x_eval, kde1(x_eval), 'k-', label="Scott's Rule")
>>> ax.plot(x_eval, kde1(x_eval), 'r-', label="Silverman's Rule")
>>> ax.plot(x_eval, kde2(x_eval), 'r-', label="Silverman's Rule")

>>> plt.show()

Expand Down

0 comments on commit 44b596e

Please sign in to comment.