【R】R scriptのknit
2021年5月7日
こちらで初めて知ったのだが、ちょっと工夫した書き方のR scriptはknitしてレンダリングできるらしい。こちらに詳しく載ってました。
rstudioで、この6行をまず書き(output: github_document がポイント)、
#' --- #' title: "R scripts to be rendered" #' author: "DiNOV Tokyo" #' date: "May 7, 2021" #' output: github_document #' ---
以降、テキストは
#`
で書き、knitするとレンダリングしてくれます。例えば、次のスクリプトをknitすると。。。。
#' --- #' title: "R scripts to be rendered" #' author: "DiNOV Tokyo" #' date: "May 7, 2021" #' output: github_document #' --- #' #' Dataset of #' `volcano`. ## here is a regular code comment, that will remain as such summary(volcano) #' Here's some more prose. I can use usual markdown syntax to make things #' **bold** or *italics*. Let's show the image of `volcano`. #+ image image(volcano)
知らなかった。これは良さそう。