Skip to content

Commit

Permalink
Merge pull request #1302 from jseabold/fix-qntls
Browse files Browse the repository at this point in the history
BUG: Fix typo.
  • Loading branch information
jseabold committed Feb 7, 2014
2 parents a31c9bd + 3e3dfc9 commit 39806de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statsmodels/graphics/gofplots.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def sample_quantiles(self):
def sample_percentiles(self):
quantiles = \
(self.sorted_data - self.fit_params[-2])/self.fit_params[-1]
return self.dist.cdf(qntls)
return self.dist.cdf(quantiles)

def ppplot(self, xlabel=None, ylabel=None, line=None, other=None,
ax=None, **plotkwargs):
Expand Down

0 comments on commit 39806de

Please sign in to comment.