-
Notifications
You must be signed in to change notification settings - Fork 0
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
Rename pip() resp columns #207
base: DEV
Are you sure you want to change the base?
Conversation
First draft
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.
Hey @Aeilert,
I've made some code update to fix the empty response and some unit tests.
Currently, some ui_functions()
are failing because of the column name inconsistency. They are also pulling data from lkup tables (which have not been renamed...)
One potential solution to move forward with the renaming, and still avoid making the corresponding changes at the pipeline level, would be to rename all lookup tables in the create_lkup()
function. What do you think?
Thanks @tonyfujs, I agree that renaming in columns in the |
* Rename cols in create_lkups in stead of in pip() * Add new rename_cols() function * Use rename_cols w/ get_aux_table() to rename files read from disk
Note: The sub-list name is still reporting_pop. Could potentially change this as well.
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 @Aeilert Just made a small update to a unit test that was failing. (related to separate PR on increasing max PL)
Task linked: CU-2me746v Rename pip() resp columns |
First draft