We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
#211 (comment):
get_coverage <- function(entity = NULL) { utils::data("oa2df_coverage", envir = environment(), package = "openalexR") oa2df_coverage <- oa2df_coverage
An alternative to utils::data() that's less side-effect-y is to use oa2df_coverage <- get("oa2df_coverage", envir = asNamespace("openalexR")).
utils::data()
oa2df_coverage <- get("oa2df_coverage", envir = asNamespace("openalexR"))
Related mastodon post.
The text was updated successfully, but these errors were encountered:
Nerd snipe successful! https://mastodon.social/@klmr/113506139059973856
I think we can do:
get_coverage <- function(entity = NULL) { oa2df_coverage <- getExportedValue("openalexR", "oa2df_coverage")
Sorry, something went wrong.
getExportedValue()
Successfully merging a pull request may close this issue.
#211 (comment):
Related mastodon post.
The text was updated successfully, but these errors were encountered: