0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

xaringan on RMarkdown on VSCodeプレゼン環境構築

Last updated at Posted at 2021-09-21

環境

  • Windows 10
  • VSCode上でRMarkdownファイルを編集
  • xaringanでブラウザ上でのプレゼンを行う

インストール手段

R

  • https://cran.r-project.org/bin/windows/base から最新版をダウンロード、インストール
  • 途中のコンポーネントの選択でMessage translationsはチェックを外す。文字化けするため

Rのパッケージ

  • 以下のパッケージをインストールする
    • language server
    • knitr
    • rmarkdown
    • xaringan
install.packages("languageserver")
install.packages('knitr', dependencies = TRUE)
install.packages('rmarkdown')
install.packages("xaringan")

Pandoc

VSCode上の設定

  • 以下の拡張機能をインストールする
    • R
    • R Debugger
    • Preview on Web Server
      • HTML PreviewはDark modeを使うと色がおかしくなったり、knitrした後の更新がされないものが多く、利用できなかった。

結果

  • 以下に示すようなVSCode内で完結するxaringanの編集、プレビュー環境を構成した。
    • R Markdown(.Rmd)ファイルをVSCodeの左側で編集し、プレビューを見たいときは実行ボタンを押し、knitrする。
    • knitrで出力されたHTMLファイルをPreview on Web Serverで開き、VSCodeの右側に表示する。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?