rmarkdown网站和HTML依赖项中的闪亮应用程序

时间:2017-02-10 17:30:15

标签: html r shiny r-markdown

我最近创建了一个rmarkdown网站。我现在想要一个突出显示基本Shiny功能的页面。对于正常的降价文档,可以使用runtime: shiny选项。但是,当我使用它时:

---
title: "Untitled"
runtime: shiny
output: html_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

```{r}
inputPanel(
           sliderInput("obs", "observations:", min = 10, max = 500, value = 100)
           )
           renderPlot({hist(rnorm(input$obs), col = 'darkgray', border = 'white')})
```

并尝试构建网站,我收到以下错误:

enter image description here

我确保我的所有套餐都是最新的。

我觉得我可能从根本上误解了网站(和Shiny)的工作方式,但我无法在authoring Shiny文档embedded Shiny中找到问题的明确答案。页面或rmarkdown website指南。

这是Shiny个应用无法以这种方式部署在网站上的情况吗?或者我只是在密集?

编辑:来自sessionifo()的输出:

> sessionInfo()
R version 3.3.2 (2016-10-31)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Antergos Linux

locale:
 [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
 [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8    
 [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
 [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
 [9] LC_ADDRESS=C               LC_TELEPHONE=C            
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
 [1] backports_1.0.5 magrittr_1.5    rprojroot_1.2   htmltools_0.3.5
 [5] tools_3.3.2     yaml_2.1.14     Rcpp_0.12.9     stringi_1.1.2  
 [9] rmarkdown_1.3   knitr_1.15.1    stringr_1.1.0   digest_0.6.12  
[13] evaluate_0.10  

1 个答案:

答案 0 :(得分:0)

在r-markdown中使用Shiny控件时,不嵌入应用程序,嵌入应用程序的各个部分。例如,如果您想在r-markdown中执行该闪亮的应用程序,则可以使用以下代码:

---
title: "Untitled"
runtime: shiny
output: html_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

```{r}
    inputPanel(
      sliderInput("obs", "observations:", min = 10, max = 500, value = 100)
    )
    renderPlot({hist(rnorm(input$obs), col = 'darkgray', border = 'white')})
```

编译时会产生这个(并且控件工作和绘图更新):

enter image description here