通常、エラーが起こったらRは処理を停止するけれど、人へのチュートリアルなどの時は、エラーを見せたい時もある。
そんな時は、
error = TRUE
をチャンクオプションに加える。(通常は FALSE になっている。)
```{r, error=TRUE}
1 + "a"
```
アウトプットでは、下記のようにエラーの説明が入る。
Error in 1 + "a": non-numeric argument to binary operator
Reference
This book showcases short, practical examples of lesser-known tips and tricks to helps users get the most out of these tools. After reading this book, you will understand how R Markdown documents are transformed from plain text and how you may customize nearly every step of this processing. For example, you will learn how to dynamically create content from R code, reference code in other documents or chunks, control the formatting with customer templates, fine-tune how your code is processed, and incorporate multiple languages into your analysis.
リンク
リンク
リンク
リンク