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
Before using them. Otherwise trigger an error. For brms and MASS.
brms
MASS
The text was updated successfully, but these errors were encountered:
Something like the following:
glustop <- function(..., .sep = "", .envir = parent.frame()) { stop(glue::glue(..., .sep = .sep, .envir = .envir), call. = FALSE) } check_suggests <- function(package) { if (!requireNamespace(package, quietly = TRUE)) { glustop("Suggested package '{package}' not present.") } } check_suggests("MASS") check_suggests("treesarecool") #> Error: Suggested package 'treesarecool' not present.
Created on 2020-08-04 by the reprex package (v0.3.0)
Sorry, something went wrong.
Yeah. Although maybe good to drop the glue dependency :)
glue
will be closed by trending ( usage removed :) )
No branches or pull requests
Before using them. Otherwise trigger an error. For
brms
andMASS
.The text was updated successfully, but these errors were encountered: