editR試した

Twitterで教えてもらった

概要

  • https://github.com/swarm-lab/editR
  • Shinyを使ったRmd Editor
  • markdownがリアルタイムに反映される

install

install.packages("devtools")
library(devtools)

devtools::install_github("trestletech/shinyAce")
devtools::install_github("swarm-lab/editR")
library(editR)

操作の流れ

  • editR()で新規ファイルを作成
  • Listening on http://127.0.0.1:6474
  • Rのcodeもリアルタイムに反映される
  • WebBrowserで http://127.0.0.1:6474/ にアクセスすると、そのまま編集できる
  • File Menuからダイアログを開き、保存できる
  • RStudioのProjectのRootに、editRsample.Rmdで保存しておいた
  • editR(”./editRsample.Rmd”)で開ける
  • File MenuからRender fileでHTMLを出力できた