Skip to content

Commit

Permalink
Merge pull request #2574 from hlin117/monotone_fn_inverter_docstring
Browse files Browse the repository at this point in the history
DOC: monotone_fn_inverter: fixed docstring
  • Loading branch information
josef-pkt committed Sep 3, 2015
2 parents c987311 + 8f5d9f3 commit 102fbb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion statsmodels/distributions/empirical_distribution.py
Expand Up @@ -144,7 +144,7 @@ def __init__(self, x, side='right'):

def monotone_fn_inverter(fn, x, vectorized=True, **keywords):
"""
Given a monotone function x (no checking is done to verify monotonicity)
Given a monotone function fn (no checking is done to verify monotonicity)
and a set of x values, return an linearly interpolated approximation
to its inverse from its values on x.
"""
Expand Down
2 changes: 1 addition & 1 deletion statsmodels/sandbox/utils_old.py
Expand Up @@ -137,7 +137,7 @@ def ECDF(values):

def monotone_fn_inverter(fn, x, vectorized=True, **keywords):
"""
Given a monotone function x (no checking is done to verify monotonicity)
Given a monotone function fn (no checking is done to verify monotonicity)
and a set of x values, return an linearly interpolated approximation
to its inverse from its values on x.
"""
Expand Down

0 comments on commit 102fbb2

Please sign in to comment.