-
Notifications
You must be signed in to change notification settings - Fork 55
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
Ap 330/feature v3 #38
Conversation
5d5f55e
to
d751ba1
Compare
@@ -11,7 +11,8 @@ Description: Functions for interacting directly with the Quandl API to offer dat | |||
in a number of formats usable in R, as well as the ability to search. | |||
Imports: | |||
httr (>= 0.6.1), | |||
zoo | |||
zoo, | |||
jsonlite | |||
Suggests: |
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.
xts, timeSeries should also go into the @imports
. Like here https://github.com/quandl/quandl-r/pull/36/files#diff-35ba4a2677442e210c23a00a5601aba3R15
xts needs to stay in depends as the package will break if it is moved into imports. If I move timeSeries into imports it will be automatically installed with Quandl. It is the intention to expand the return formats eventually to some of the others in R (its, irts, etc.) and I do not want them to be required installations with the package. As well adding the lines
Will load the entirety of httr and jsonlite into the global namespace, which I don't think is necessary. |
In regard to the second one: you can also use importFrom pck fnct. -> timeseries: then it should be documented (+at least added to the |
d1f34ea
to
36f31a4
Compare
@dmpe Is there a reason why you want to import the namespace directives? we are hoping to following best practices seen in other popular R packages, e.g., |
a16a8d9
to
99fc4bb
Compare
add bulk download update docs and README
99fc4bb
to
b81e2da
Compare
Yes.
https://github.com/hadley/dplyr/search?utf8=%E2%9C%93&q=importFrom&type=Code |
WIP