使用rmarkdown获取数据以闪亮显示

时间:2017-06-07 19:09:24

标签: r shiny r-markdown

我正在创建一个使用rMarkdown的闪亮应用程序,这与制作直接闪亮的应用程序有点不同,因为您不使用ui和服务器部分。

我想使用rMarkdown在Shiny中显示一个表。

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



### Data

```{r echo=FALSE}
n <- c(2, 3, 5)
s <- c("aa", "bb", "cc")
b <- c(TRUE, FALSE, TRUE)
myDataFrame <- data.frame(n,s,b)

tableOutput("view")
textOutput("message")

output$view <-renderTable({myDataFrame})

output$message <- renderText({"test test test"})

表&#34;查看&#34;和消息&#34;消息&#34;没有显示。

1 个答案:

答案 0 :(得分:1)

删除作业:

```{r echo=FALSE}
n <- c(2, 3, 5)
s <- c("aa", "bb", "cc")
b <- c(TRUE, FALSE, TRUE)
myDataFrame <- data.frame(n,s,b)

tableOutput("view")
textOutput("message")

renderTable({myDataFrame})

renderText({"test test test"})
```

enter image description here