-
Notifications
You must be signed in to change notification settings - Fork 10
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
Function to download history data #56
Conversation
Before I go into the actual review, I have a couple of questions for you:
|
Good questions.
|
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 to me.
A couple of points to update:
- I'd like more comments about the various formats and when they were in use. I'll submit commit suggestions for this later
- Could you rename the file to
download_history.R
please? - Could you add a roxygen title?
- Could you add a roxygen comment with
#' @importFrom utils download.file read.csv unzip
? - Once the two points above have been addressed, could you run
devtools::document()
?
I'm happy to post commit suggestions or do the changes myself if convenient. Please let me know
Sorry, I almost forgot about this. |
I think I addressed all the point raised. I took the liberty to use |
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.
Oh, I missed the fact you added comments with the dates so I wrote my own. I tried to merge what we both did. Please let me know what you think.
One final comment: I just realized now you're not in the authors of this package. Could you add yourself as aut
please?
Headers are now used in chronological order.
Always test before committing!
👍 I fixed the comments, reordered the code and I added myself as an author |
Thanks! |
This is a draft after some iterations on the function (I originally used bash).
It depends on the number of columns on the file to simplify and merge the different files.
I hope it is clear enough (but maybe it could be simplified with a helper function).
It also iterates two times through the list of .csv files, that could be reduced but increasing the memory required earlier. (I don't think this is an issue and it could help if column names are reordered).
It doesn't check if data was recently downloaded or cache the data.
Let me know how do you see it and I'll finish writing the documentation.