You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Small bug in the FamaMacBeth class at lines 105-106-- the printed form of the regression results gives the STD twice, rather than the t-stat:
std_beta = self._results['std_beta'][i]
t_stat = self._results['std_beta'][i]
Last one should be t_stat instead of std_beta the second time.
The text was updated successfully, but these errors were encountered:
Small bug in the FamaMacBeth class at lines 105-106-- the printed form of the regression results gives the STD twice, rather than the t-stat:
std_beta = self._results['std_beta'][i]
t_stat = self._results['std_beta'][i]
Last one should be t_stat instead of std_beta the second time.
The text was updated successfully, but these errors were encountered: