Wie unterdrücke ich diese Ausgabe?

Ich habe einen Codeabschnitt in einer R Markdown-Datei.

```{r}
library(UsingR)
```

Die Verwendung von knitHTML zum Kompilieren führt zu der folgenden Ausgabe, die noch nie erfolgt ist, bevor ich auf die neuesten Versionen von R und RStudio aktualisiert habe:

## Loading required package: MASS
## Loading required package: HistData
## Loading required package: Hmisc
## Loading required package: grid
## Loading required package: lattice
## Loading required package: survival
## Loading required package: splines
## Loading required package: Formula
## 
## Attaching package: 'Hmisc'
## 
## The following objects are masked from 'package:base':
## 
##     format.pval, round.POSIXt, trunc.POSIXt, units
## 
## Loading required package: aplpack
## Loading required package: tcltk
## Loading required package: quantreg
## Loading required package: SparseM
## 
## Attaching package: 'SparseM'
## 
## The following object is masked from 'package:base':
## 
##     backsolve
## 
## 
## Attaching package: 'quantreg'
## 
## The following object is masked from 'package:Hmisc':
## 
##     latex
## 
## The following object is masked from 'package:survival':
## 
##     untangle.specials
## 
## 
## Attaching package: 'UsingR'
## 
## The following object is masked from 'package:survival':
## 
##     cancer

Wie kann ich diese Ausgabe unterdrücken? Hinweis: echo = FALSE hat nicht funktioniert.

Antworten auf die Frage(1)

Ihre Antwort auf die Frage