Setting message=FALSE in your code block should work.
```{r, message=FALSE} library(UsingR) ```
Setting echo=FALSE should not have worked - this is by design. The echo parameter in the code block controls the display of the code inside the fragment (i.e. library(UsingR) ).
Messages (as shown) are processed separately through the message parameter.
Errors are handled using the error parameter (i.e. error=FALSE suppresses error messages).
Results are processed using the results parameter (i.e. results=FALSE will suppress the results of the code fragment).
Warnings are processed using the warning parameter (i.e. warning=FALSE will suppress warnings generated by the code block), since warnings are different from errors.
There are many other code parameters, but these are the main parameters that control the text output generated by this code block.
source share