将Markdown保存为交互式HTML

时间:2017-02-10 11:34:16

标签: html r shiny markdown

是否可以将此交互式降价报告转换为html并将其保存为特定文件夹(目标是使此报告在R之外保持活动状态)?如果是,怎么样?

---
runtime: shiny
output: html_document
---    

```{r echo=FALSE}
N<-c('A','B','C'); V<-c(60,50,80); mydf<-data.frame(N,V)
selectInput("sel","Select:",choices = as.character(mydf$N))
renderText({
     paste("The result is:",mydf[mydf$N==input$sel,2])
})
```

谢谢和亲切的问候

1 个答案:

答案 0 :(得分:1)

从Rstudio中的设置(run document旁边)中选择Preview in Viewer Panel。这将使用您的浏览器而不是Rstudio的内置浏览器。

然后您将看到html文件保存在您的硬盘上:

processing file: testing_interactive.Rmd

"C:/Program Files/RStudio/bin/pandoc/pandoc" +RTS -K512m -RTS "C:/Users/TB/AppData/Local/Temp/RtmpKYheKO/testing_interactive.utf8.md" --to html --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash --output pandoc83c74213d5c.html --smart --email-obfuscation none --standalone --section-divs --template "C:\Rlibs\rmarkdown\rmd\h\default.html" --no-highlight --variable highlightjs=1 --variable "theme:bootstrap" --mathjax --variable "mathjax-url:https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" --id-prefix section- 
output file: C:/Users/TB/AppData/Local/Temp/RtmpKYheKO/testing_interactive.knit.md


Output created: C:/Users/TB/AppData/Local/Temp/RtmpKYheKO/file83c15d05b9c.html