-
Notifications
You must be signed in to change notification settings - Fork 5
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
New Function Added To Get Columns From Files #106
base: master
Are you sure you want to change the base?
Conversation
Thanks Issac! I may not be able to review this until after the upcoming Botany meetings (so late June). Sorry for the delay. |
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'm wondering if this should be called get_column_names()
rather than get_columns_from_files()
as I think it returns the column names, not the columns themselves (and update associated documentation to clarify this point)
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.
Can this all be updated to something like "get_column_names" or "get_column_headers"? The function doesn't actually return the columns themselves, so the name "get_columns_from_files" is a bit misleading/confusing.
New function added to get all columns from each csv provided. Function can also find common columns (those that appear more than once across your csv's). Documentation written up, GitHub site updated, News page updated, checks applied, and lintr checks ran. No unit tests written (not too well-versed in writing unit tests).