Skip to content

Commit

Permalink
BUG: robust.norms.TrimmedMean fix typos in psi_deriv closes #425
Browse files Browse the repository at this point in the history
  • Loading branch information
josef-pkt authored and jseabold committed Aug 5, 2013
1 parent ad95288 commit d66364a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions statsmodels/robust/norms.py
Expand Up @@ -555,15 +555,15 @@ def weights(self, z):
test = self._subset(z)
return test

def psi_derive(self, z):
def psi_deriv(self, z):
"""
The derivative of least trimmed mean psi function
Notes
-----
Used to estimate the robust covariance matrix.
"""
test = self.subzet(z)
test = self._subset(z)
return test

class Hampel(RobustNorm):
Expand Down

0 comments on commit d66364a

Please sign in to comment.