-
Notifications
You must be signed in to change notification settings - Fork 890
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
Support Woodwork's update numeric inference (integers as strings) #2505
Conversation
gsheni
commented
Mar 9, 2023
- Fixes Support Woodwork's update numeric inference (integers as strings) #2504 2504
@@ -929,7 +929,7 @@ def test_handles_datetime_mismatch(): | |||
def test_dataframe_init(es): | |||
df = pd.DataFrame( | |||
{ | |||
"id": ["0", "1", "2"], | |||
"id": [0, 1, 2], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think maybe we just want to set the LogicalType for ID on L943 (and remove L946) instead of relying on inference here? Maybe we should just set all the types regardless of the dataframe type. I'm not sure we need to rely on WW inference for anything in this test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, assuming CI passes
Codecov Report
@@ Coverage Diff @@
## main #2505 +/- ##
=======================================
Coverage 99.44% 99.44%
=======================================
Files 367 367
Lines 21882 21882
=======================================
Hits 21760 21760
Misses 122 122
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |