Open thehomebrewnerd opened 3 years ago
@thehomebrewnerd moving this to Woodwork Integration Follow Up Epic
I think the fix for this would be to give Double logical type the dtype of Float64
, but may cause issues as described here.
There is a pandas issue:
import pandas as pd
df = pd.DataFrame({
'id': [0, 1, 2],
'null_ints': [pd.NA] * 3
})
df['null_ints'] = df['null_ints'].astype("object").astype("float64")
CumMean and CumSum can fail on all null columns
The
CumMean
andCumSum
primitives can fail during calculate feature matrix if a numeric column with allpd.NA
values is present. The failure happens when Featuretools attempts to initialize Woodwork on the feature matrix.