-
Notifications
You must be signed in to change notification settings - Fork 3
/
observe_update.Rmd
192 lines (153 loc) · 5.06 KB
/
observe_update.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# Pour aller plus loin : observe & fonctions d'update
## Observe & fonctions d'update
- Il existe une série de fonctions pour mettre à jour les inputs et certaines structures
- les fonctions commencent par ``update...``
- On les utilise généralement à l'intérieur d'un ``observe({expr})``
- La syntaxe est similaire à celle des fonctions de création
- __Attention__ : il est nécessaire d'ajouter un argument _"session"_ dans la définition du **server**
```{r, echo = TRUE, eval = FALSE}
shinyServer(function(input, output, session) {...})
```
------
Sur des inputs :
- __updateCheckboxGroupInput__
- __updateCheckboxInput__
- __updateDateInput Change__
- __updateDateRangeInput__
- __updateNumericInput__
- __updateRadioButtons__
- __updateSelectInput__
- __updateSelectizeInput__
- __updateSliderInput__
- __updateTextInput__
Pour changer dynamiquement l'onglet sélectionné :
- __updateNavbarPage__, __updateNavlistPanel__, __updateTabsetPanel__
## Observe & fonctions d'update | Exemple sur un input | ui.R
```{r, echo = TRUE, eval = FALSE}
shinyUI(fluidPage(
titlePanel("Observe"),
sidebarLayout(
sidebarPanel(
radioButtons(inputId = "id_dataset", label = "Choose a dataset", inline = TRUE,
choices = c("cars", "iris", "quakes"), selected = "cars"),
selectInput("id_col", "Choose a column", choices = colnames(cars)),
textOutput(outputId = "txt_obs")
),
mainPanel(fluidRow(
dataTableOutput(outputId = "dataset_obs")
))
)
))
```
## Observe & fonctions d'update | Exemple sur un input | server.R
```{r, echo = TRUE, eval = FALSE}
shinyServer(function(input, output, session) {
dataset <- reactive(get(input$id_dataset, "package:datasets"))
observe({
updateSelectInput(session, inputId = "id_col", label = "Choose a column",
choices = colnames(dataset()))
})
output$txt_obs <- renderText(paste0("Selected column : ", input$id_col))
output$dataset_obs <- renderDataTable(
dataset(),
options = list(pageLength = 5)
)
})
```
## Observe & fonctions d'update | Exemple sur un input | App
```{r, echo = FALSE}
rmarkdown::render_delayed({
shinyApp( ui = fluidPage(
titlePanel("Observe"),
sidebarLayout(
sidebarPanel(
radioButtons(inputId = "id_dataset", label = "Choose a dataset", inline = TRUE,
choices = c("cars", "iris", "quakes"), selected = "iris"),
selectInput("id_col", "Choose a column", choices = colnames(cars)),
textOutput(outputId = "txt_obs")
),
mainPanel(fluidRow(
dataTableOutput(outputId = "dataset_obs")
))
)
),
server = function(input, output, session) {
dataset <- reactive(get(input$id_dataset, "package:datasets"))
observe({
updateSelectInput(session, inputId = "id_col", label = "Choose a column",
choices = colnames(dataset()))
})
output$txt_obs <- renderText(paste0("Selected column : ", input$id_col))
output$dataset_obs <- renderDataTable(
dataset(),
options = list(pageLength = 5)
)
})
})
```
## Observe & fonctions d'update | Exemple sur des onglets | ui.R
__Il faut rajouter un id dans la structure__
```{r, echo = TRUE, eval = FALSE}
shinyUI(
navbarPage(
id = "idnavbar", # need an id for observe & update
title = "A NavBar",
tabPanel(title = "Summary",
actionButton("goPlot", "Go to plot !")),
tabPanel(title = "Plot",
actionButton("goSummary", "Go to Summary !"))
)
)
```
## Observe & fonctions d'update | Exemple sur des onglets | server.R
```{r, echo = TRUE, eval = FALSE}
shinyServer(function(input, output, session) {
observe({
input$goPlot
updateTabsetPanel(session, "idnavbar", selected = "Plot")
})
observe({
input$goSummary
updateTabsetPanel(session, "idnavbar", selected = "Summary")
})
})
```
## Observe & fonctions d'update | Exemple sur des onglets | App
```{r, echo = FALSE}
rmarkdown::render_delayed({
shinyApp( ui = shinyUI(
navbarPage(
id = "idnavbar", # need an id for oberve & update
title = "A NavBar",
tabPanel(title = "Summary",
actionButton("goPlot", "Go to plot !")),
tabPanel(title = "Plot",
actionButton("goSummary", "Go to Summary !"))
)
),
server = function(input, output, session) {
observe({
input$goPlot
updateTabsetPanel(session, "idnavbar", selected = "Plot")
})
observe({
input$goSummary
updateTabsetPanel(session, "idnavbar", selected = "Summary")
})
})
})
```
## Observe & fonctions d'update | observeEvent
- Une variante de la fonction ``observe`` est disponible avec la fonction ``observeEvent``
- On définit alors de façon explicite l'espression qui représente l'événement _et_ l'expression qui sera éxécutée quand l'événement se produit
```{r, echo = TRUE, eval = FALSE}
# avec un observe
observe({
input$goPlot
updateTabsetPanel(session, "idnavbar", selected = "Plot")
})
# idem avec un observeEvent
observeEvent(input$goSummary, {
updateTabsetPanel(session, "idnavbar", selected = "Summary")
})
```