Suppressing startup messages
When packages start, they may print messages to the screen. This is useful for interactive coding, but not that great when generating reports, e.g. knitr.
Cet exercice fait partie du cours
Defensive R Programming
Instructions
- Suppress the startup messages when loading the dplyr package. The function you need starts with
suppress
.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
___(library("dplyr"))