何らかの入力に基づいてレンダリング(renderPlot
)または別のタイプ(renderText
)のどちらかをcontiditonallyしようとしています。ここに私が試したものです:条件付きリアクションロジックシャイニーベースのフレックスダッシュボード
---
title: "Citation Extraction"
output:
flexdashboard::flex_dashboard:
vertical_layout: scroll
orientation: rows
social: menu
source_code: embed
runtime: shiny
---
```{r setup, include=FALSE}
library(flexdashboard)
library(shiny)
```
Sidebar {.sidebar}
=====================================
```{r}
textInput("txt", "What's up?:")
```
Page 1
=====================================
### Chart A
```{r}
urtxt <- reactive({input$txt})
if (nchar(urtxt()) > 20){
renderPlot({plot(1:10, 1:10)})
} else {
renderPrint({
urtxt()
})
}
```
しかし、それは述べている:
だから私は、関数にreactive
リターンを返すの条件結果として生じる周りの反応を追加してみました。
reactive({
if (nchar(urtxt()) > 20){
renderPlot({plot(1:10, 1:10)})
} else {
renderPrint({
urtxt()
})
}
})
どのように条件付きリアクティブロジックを使用できますか?応じて反応性環境renderUI
でダイナミック出力uiOutput
を作成
1)、
2)、:あなたは次の操作を行うことができますinputed文字列の長さに応じて、出力の異なる種類を取得するには
をレンダリングします。質問品質にかかわらず誰かが私のすべてを投票しているようだ。ダウンフォートの本当の理由がある場合は、私が改善できるように共有してください。 –
最近、多くの匿名ダウンワード投票があるようですが、そのほとんどは無作為の重複のためです。これははるかに躍動的であり、比較的新しい用途から良い答えを引き出すという利点がありました。両方にあなたに誇り。 –