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
Pandas v1+ introduced a new class (pd.NA) for missing data. ffn library v0.3.6 utilizes numpy isnan function to identify missing data. The problem is that np.isnan(pd.NA) returns pd.NA, which is ambiguous in boolean expressions. The effect of this issue is an exception raised when calc_stats functions computes the return table from monthly returns. Monthly returns necessarily is missing the value in the 1st row of DataFrame or Series. This value is passed to np.isnan function on line 320 in _calculate function of PerformanceStats class in core.py. With pandas v1+ the missing value passed to np.isnan is pd.NA. The expression np.isnan(mr[idx]) on line 320 of core.py is evaluated to pd.NA, and 'if np.isnan(mr[idx])' raises an exception.
To make ffn library work with pandas v1+ np.isnan function on line 320 of core.py needs to be replaced with pd.isna.
In addition and for the same reasons the expression 'if np.isnan(number)' on line 115 in utils.py needs to be replaced with 'if (np.isnan(number) | pd.isna(number))'
The text was updated successfully, but these errors were encountered:
Pandas v1+ introduced a new class (pd.NA) for missing data. ffn library v0.3.6 utilizes numpy isnan function to identify missing data. The problem is that np.isnan(pd.NA) returns pd.NA, which is ambiguous in boolean expressions. The effect of this issue is an exception raised when calc_stats functions computes the return table from monthly returns. Monthly returns necessarily is missing the value in the 1st row of DataFrame or Series. This value is passed to np.isnan function on line 320 in _calculate function of PerformanceStats class in core.py. With pandas v1+ the missing value passed to np.isnan is pd.NA. The expression np.isnan(mr[idx]) on line 320 of core.py is evaluated to pd.NA, and 'if np.isnan(mr[idx])' raises an exception.
To make ffn library work with pandas v1+ np.isnan function on line 320 of core.py needs to be replaced with pd.isna.
In addition and for the same reasons the expression 'if np.isnan(number)' on line 115 in utils.py needs to be replaced with 'if (np.isnan(number) | pd.isna(number))'
The text was updated successfully, but these errors were encountered: