Skip to content

Commit

Permalink
Merge pull request #1820 from josef-pkt/fix_confint
Browse files Browse the repository at this point in the history
BUG: revert change to conf_int in PR #1819
  • Loading branch information
josef-pkt committed Jul 9, 2014
2 parents a579eb9 + 33fe946 commit f7483fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statsmodels/base/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1389,7 +1389,7 @@ def conf_int(self, alpha=.05, cols=None, method='default'):
cols = np.asarray(cols)
lower = self.params[cols] - q * bse[cols]
upper = self.params[cols] + q * bse[cols]
return np.column_stack((lower, upper))
return np.asarray(lzip(lower, upper))

def save(self, fname, remove_data=False):
'''
Expand Down

0 comments on commit f7483fd

Please sign in to comment.