Skip to content

Commit

Permalink
MAINT: fix doc formatting issue in stats.anderson_ksamp.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Mar 16, 2014
1 parent 727fa40 commit 89654ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scipy/stats/morestats.py
Expand Up @@ -1274,8 +1274,8 @@ def anderson_ksamp(samples, midrank=True):
Anderson-Darling Tests, Journal of the American Statistical
Association, Vol. 82, pp. 918-924.
Examples:
---------
Examples
--------
>>> from scipy import stats
>>> np.random.seed(314159)
Expand All @@ -1301,8 +1301,8 @@ def anderson_ksamp(samples, midrank=True):
(-0.73091722665244196,
array([ 0.44925884, 1.3052767 , 1.9434184 , 2.57696569, 3.41634856]),
0.8789283903979661)
"""
"""
k = len(samples)
if (k < 2):
raise ValueError("anderson_ksamp needs at least two samples")
Expand Down

0 comments on commit 89654ae

Please sign in to comment.