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
CAMERA gives a lot of status messages. This is normally good but when making tutorials it is often clear to avoid that.
If the messages are created with message() they can be disabled in rmarkdown with message=FALSE. In a script suppressMessages can be used,
message()
message=FALSE
suppressMessages
Right now the messages are made with cat which cannot be ignored.
cat
Some philosophy on that: https://stackoverflow.com/questions/36699272/why-is-message-a-better-choice-than-print-in-r-for-writing-a-package/36700294
The text was updated successfully, but these errors were encountered:
No branches or pull requests
CAMERA gives a lot of status messages. This is normally good but when making tutorials it is often clear to avoid that.
If the messages are created with
message()
they can be disabled in rmarkdown withmessage=FALSE
. In a scriptsuppressMessages
can be used,Right now the messages are made with
cat
which cannot be ignored.Some philosophy on that: https://stackoverflow.com/questions/36699272/why-is-message-a-better-choice-than-print-in-r-for-writing-a-package/36700294
The text was updated successfully, but these errors were encountered: