Skip to content

Commit

Permalink
Update _mixedlm.py
Browse files Browse the repository at this point in the history
fixed typo
  • Loading branch information
mortonjt committed Jan 28, 2017
1 parent 9d62e16 commit cd9c12a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gneiss/regression/_mixedlm.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def summary(self, ndim=10):
pvals.insert(0, ' ', ['pvalue']*pvals.shape[0])
scores = pd.concat((coefs, pvals))
scores = scores.sort_values(by=' ', ascending=False)
scores = scores.sort_index(sort='mergesort')
scores = scores.sort_index(kind='mergesort')

def _format(x):
# format scores to be printable
Expand Down

0 comments on commit cd9c12a

Please sign in to comment.