Ho usato Knitr tramite R-Studio e penso che sia abbastanza pulito. Ho un problema minore però. Quando ho fonte un file in un R-Chunk, l'uscita knitr include commenti esterni come segue:R - Markdown che evita i messaggi di caricamento del pacchetto
+ FALSE Loading required package: ggplot2
+ FALSE Loading required package: gridExtra
+ FALSE Loading required package: grid
+ FALSE Loading required package: VGAM
+ FALSE Loading required package: splines
+ FALSE Loading required package: stats4
+ FALSE Attaching package: 'VGAM'
+ FALSE The following object(s) are masked from 'package:stats4':
Ho cercato di impostare le opzioni R-Chunk in vari modi, ma ancora non sembrava per evitare il problema:
```{r echo=FALSE, cache=FALSE, results=FALSE, warning=FALSE, comment=FALSE, warning=FALSE}
source("C:/Rscripts/source.R");
```
C'è un modo per commentare questi messaggi?
imposta 'opzioni (warn = -1)' e torna a 'options (warn = 0)' alla fine del Rmd. Si prende cura di tutti i messaggi del pacchetto di avvio. Tieni presente che stai disattivando gli avvisi, ma solo mentre viene eseguito il rendering di Rmd. –