-
Notifications
You must be signed in to change notification settings - Fork 3
/
ui_structure.Rmd
311 lines (266 loc) · 7.43 KB
/
ui_structure.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
# Structurer sa page
## Structurer sa page | __sidebarLayout__ | Définition
Le template basique `sidebarLayout` divise la page en deux colonnes et doit contenir :
- `sidebarPanel`, à gauche, en général pour les inputs
- `mainPanel`, à droite, en général pour les outputs
```{r , echo = TRUE, eval = FALSE}
shinyUI(fluidPage(
titlePanel("Old Faithful Geyser Data"), # title
sidebarLayout(
sidebarPanel("Eléments du sidebar (séparés par des virgules)"),
mainPanel("Eléments du panel (séparés par des virgules)")
)
))
```
## Structurer sa page | __sidebarLayout__ | Exemple
```{r, echo = FALSE}
shinyApp(
ui = fluidPage(
titlePanel("My first app"),
sidebarLayout(
sidebarPanel(
"Eléments séparés par des virgules"
),
mainPanel(
"Eléments séparés par des virgules"
)
)
),
server = function(input, output) {}
)
```
## Structurer sa page | __wellPanel__ | Définition
Comme avec le ``sidebarPanel`` précédent, on peut griser un ensemble d'éléments en utilisant un ``wellPanel`` :
```{r , echo = TRUE, eval = FALSE}
shinyUI(fluidPage(
titlePanel("Old Faithful Geyser Data"), # title
wellPanel(
sliderInput("num", "Choose a number", value = 25, min = 1, max = 100),
textInput("title", value = "Histogram", label = "Write a title")
),
plotOutput("hist")
))
```
## Structurer sa page | __wellPanel__ | Exemple
```{r, echo = FALSE}
shinyApp(
ui = fluidPage(
fluidRow(
column(6,
h2("Without wellPanel"), # title
sliderInput("num", "Choose a number", value = 25, min = 1, max = 100),
textInput("title", value = "Histogram", label = "Write a title")
),
column(6,
h2("With wellPanel"), # title
wellPanel(
sliderInput("num", "Choose a number", value = 25, min = 1, max = 100),
textInput("title", value = "Histogram", label = "Write a title")
)
)
)
),
server = function(input, output) {}
)
```
## Structurer sa page | __navbarPage__ | Définition
Utiliser une barre de navigation et des onglets avec `navbarPage` et `tabPanel`:
```{r , echo = TRUE, eval = FALSE}
shinyUI(
navbarPage(
title = "My first app",
tabPanel(title = "Summary",
"Here is the summary"),
tabPanel(title = "Plot",
"some charts"),
tabPanel(title = "Table",
"some tables")
)
)
```
## Structurer sa page | __navbarPage__ | Définition
Nous pouvons rajouter un second niveau de navigation avec un `navbarMenu` :
```{r , echo = TRUE, eval = FALSE}
shinyUI(
navbarPage(
title = "My first app",
tabPanel(title = "Summary",
"Here is the summary"),
tabPanel(title = "Plot",
"some charts"),
navbarMenu("Table",
tabPanel("Table 1"),
tabPanel("Table 2")
)
)
)
```
## Structurer sa page | __navbarPage__ | Shiny app
```{r, echo = FALSE}
shinyApp(
ui = navbarPage(
title = "My first app",
tabPanel(title = "Summary",
"Here is the summary"),
tabPanel(title = "Plot",
"some charts"),
navbarMenu("Table",
tabPanel("Table 1", "a table"),
tabPanel("Table 2", "another table")
)
),
server = function(input, output) {}
)
```
## Structurer sa page | __tabsetPanel__ | Définition
Plus généralement, nous pouvons créer des onglets à n'importe quel endroit en utilisant `tabsetPanel` & `tabPanel`:
```{r , echo = TRUE, eval = FALSE}
shinyUI(fluidPage(
titlePanel("Old Faithful Geyser Data"), # title
sidebarLayout(
sidebarPanel("SIDEBAR"),
mainPanel(
tabsetPanel(
tabPanel("Plot", plotOutput("plot")),
tabPanel("Summary", verbatimTextOutput("summary")),
tabPanel("Table", tableOutput("table"))
)
)
)
))
```
## Structurer sa page | __tabsetPanel__ | Exemple
```{r, echo = FALSE}
shinyApp(
ui = fluidPage(
titlePanel("My first app"),
sidebarLayout(
sidebarPanel(
"SIDEBAR"
),
mainPanel(
tabsetPanel(
tabPanel("Plot", "plot"),
tabPanel("Summary", "summary"),
tabPanel("Table", "table")
)
)
)
),
server = function(input, output) {}
)
```
## Structurer sa page | __navlistPanel__ | Définition
Une alternative au `tabsetPanel`, pour une disposition verticale plutôt qu'horizontale : ``navlistPanel``
```{r , echo = TRUE, eval = FALSE}
shinyUI(fluidPage(
navlistPanel(
tabPanel("Plot", plotOutput("plot")),
tabPanel("Summary", verbatimTextOutput("summary")),
tabPanel("Table", tableOutput("table"))
)
))
```
## Structurer sa page | __navlistPanel__ | Exemple
```{r, echo = FALSE}
shinyApp(
ui = fluidPage(
navlistPanel(
tabPanel("Plot", "plot"),
tabPanel("Summary", "summary"),
tabPanel("Table", "table")
)
),
server = function(input, output) {}
)
```
## Structurer sa page | __Grid Layout__ | Définition
Créer sa propre organisation avec `fluidRow()` et `column()`
* chaque ligne peut être divisée en 12 colonnes
* le dimensionnement final de la page est automatique en fonction des éléments dans les lignes / colonnes
```{r , echo = TRUE, eval = FALSE}
tabPanel(title = "Summary",
# A fluid row can contain from 0 to 12 columns
fluidRow(
# A column is defined necessarily
# with its argument "width"
column(width = 4, "Eléments de la 1ère colonne"),
column(width = 4, "Eléments de la 2nd colonne"),
column(width = 4, "Eléments de la 3ième colonne"),
))
```
## Structurer sa page | __Grid Layout__ | Shiny app
```{r , echo = FALSE}
shinyApp(
ui = navbarPage(
title = "My first app",
tabPanel(
title = "Summary",
fluidRow(
column(
width = 4,
"column 1",
"With a plot",
"And a Table"
),
column(
width = 4,
"column 2"
),
column(
width = 4,
"column 3"
)
)
),
tabPanel(title = "Plot",
"some charts"),
tabPanel(title = "Table",
"some tables")
),
server = function(input, output) {}
)
```
## Structurer sa page | __shinydashboard__
Le package [shinydashboard](https://rstudio.github.io/shinydashboard/) propose d'autres fonctions pour créer des tableaux de bords :
<div style="text-align:center" markdown="1">
<img src="img/dash.png" alt="Drawing" style="width: 60%;">
</div>
<https://rstudio.github.io/shinydashboard/>
## Structurer sa page | __Combiner les structures__ | Shiny app
Toutes les structures peuvent s'utiliser en même temps !
```{r , echo = FALSE}
shinyApp(
ui = navbarPage(
title = "Combiner les structures",
tabPanel(
title = "fluidRow",
fluidRow(
column(
width = 6,
HTML("<h4> Header created with HTML() </h4>")
),
column(
width = 6,
tags$div(style = "color:blue",
align = "center",
"Simple div created with tags$div()")
)
)
),
tabPanel(
title = "navlistPanel & tabSetPanel",
navlistPanel(
tabPanel("Plot",
tabsetPanel(
tabPanel("Individus", plotOutput("plot")),
tabPanel("Variables", tableOutput("table"))
)),
tabPanel("Summary", verbatimTextOutput("summary")),
tabPanel("Table", tableOutput("table"))
)
)
),
server = function(input, output) {}
)
```