-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add sample data and include in tests #37
Add sample data and include in tests #37
Conversation
@@ -131,6 +131,7 @@ def miswrite_zipcodes( | |||
:return: pd.Series of noised zipcodes | |||
""" | |||
|
|||
column = column.astype(str) |
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.
What are these coming in as now if not strings? I'm concerned if they're coming in as ints again then we will be back to losing preceding 0s (thought I guess the check below would catch that)
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.
The same dataset has all the zipcodes as 90210, which was being interpreted as an int.
("todo", Form.CPS), | ||
("todo", Form.WIC), | ||
("todo", Form.SSA), | ||
("todo", Form.TAX_W2_1099), |
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.
You knocked out so many TODOs with one fell swoop!
0f897c1
to
a92fca3
Compare
Add sample data and include in tests
Description
Changes
Testing
Newly enabled tests complete successfully.