We can get aggregate counts for all packages over a period and counts by date for specific packages. That is great but can we also get aggregate counts by package over a period? I know it's a simple aggregation we can do as well but it would save downloading a million records.
We can get aggregate counts for all packages over a period and counts by date for specific packages. That is great but can we also get aggregate counts by package over a period? I know it's a simple aggregation we can do as well but it would save downloading a million records.
Something like:
cran_downloads(package = 'cranlogs', from='2020-01-01', to='2020-03-14', aggregate=TRUE)
This probably would require a change in the API for it to be an actual saving. Let me know what you think.