-
Notifications
You must be signed in to change notification settings - Fork 885
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CumMean and CumSum can fail on all null columns #1682
Comments
@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 |
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") |
Opened a ticket with Pandas. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.The text was updated successfully, but these errors were encountered: