-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutput.Rmd
224 lines (184 loc) · 5.41 KB
/
output.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
# Outputs
## Outputs | Vue globale
<div style="text-align:center" markdown="1">
<img src="img/all_output.png" alt="Drawing" style="width: 100%;">
</div>
## Outputs | Les bonnes règles de construction
- assigner l'output à afficher dans la liste __output__, avec un nom permettant l'identification côté __UI__
- utiliser une fonction __renderXX({expr})__
- __la dernière expression doit correspondre au type d'objet retourné__
- accéder aux inputs, et amener la réactivité, en utilisant la liste __input__ et l'identifiant : __input$inputId__
```{r, echo = TRUE, eval = FALSE}
#ui.R
selectInput("lettre", "Lettres:", LETTERS[1:3])
verbatimTextOutput(outputId = "selection")
#server.R
output$selection <- renderPrint({input$lettre})
```
## Outputs | Print
- __ui.r__:
```{r, echo = TRUE, eval = FALSE}
verbatimTextOutput(outputId = "texte")
```
- __server.r__:
```{r, echo = TRUE, eval = FALSE}
output$texte <- renderPrint({
c("Hello shiny !")
})
```
```{r, echo = FALSE}
shinyApp(
ui = fluidPage(verbatimTextOutput(outputId = "texte")),
server = function(input, output) {
output$texte <- renderPrint(c("Hello shiny !"))
}
)
```
## Outputs | Texte
- __ui.r__:
```{r, echo = TRUE, eval = FALSE}
textOutput(outputId = "texte")
```
- __server.r__:
```{r, echo = TRUE, eval = FALSE}
output$texte <- renderText({
c("Hello shiny !")
})
```
```{r, echo = FALSE, eval = TRUE}
shinyApp(
ui = fluidPage(textOutput(outputId = "texte")),
server = function(input, output) {
output$texte <- renderText(c("Hello shiny !"))
}
)
```
## Outputs | Plot | _Code_
- __ui.r__:
```{r, echo = TRUE, eval = FALSE}
plotOutput("myplot")
```
- __server.r__:
```{r, echo = TRUE, eval = FALSE}
output$myplot <- renderPlot({
require(grDevices) # for colours
tN <- table(Ni <- stats::rpois(100, lambda = 5))
r <- barplot(tN, col = rainbow(20))
lines(r, tN, type = "h", col = "red", lwd = 2)
})
```
## Outputs | Plot | _App_
```{r, echo = FALSE}
rmarkdown::render_delayed({
shinyApp(ui = fluidPage(
tags$div(plotOutput("myplot"), align = 'center')
),
server = function(input, output) {
output$myplot <- renderPlot({
require(grDevices) # for colours
tN <- table(Ni <- stats::rpois(100, lambda = 5))
r <- barplot(tN, col = rainbow(20))
lines(r, tN, type = "h", col = "red", lwd = 2)
})
})
})
```
## Outputs | Table | _Code_
- __ui.r__:
```{r, echo = TRUE, eval = FALSE}
tableOutput(outputId = "table")
```
- __server.r__:
```{r, echo = TRUE, eval = FALSE}
data("iris")
output$table <- renderTable({
iris[1:5, ]
})
```
## Outputs | Table | _App_
```{r, echo = FALSE, eval = TRUE}
rmarkdown::render_delayed({
shinyApp(
ui = fluidPage(tags$div(tableOutput(outputId = "table"), align = 'center')),
server = function(input, output) {
data(iris)
output$table <- renderTable({
iris[1:5, ]
})
})
})
```
## Outputs | DataTable | _Code_
- __ui.r__:
```{r, echo = TRUE, eval = FALSE}
dataTableOutput(outputId = "dataTable")
```
- __server.r__:
```{r, echo = TRUE, eval = FALSE}
data("iris")
output$dataTable <- renderDataTable({
iris[1:10, ]
})
```
## Outputs | DataTable | _App_
```{r, echo = FALSE}
rmarkdown::render_delayed({
shinyApp(
ui = fluidPage( tags$div(dataTableOutput(outputId = "dataTable"), align = 'center')),
server = function(input, output) {
data(iris)
output$dataTable <- renderDataTable({
iris[1:5, ]
})
}
)
})
```
## Outputs | Définir des élements de l'UI côté SERVER | Définition
__Dans certains cas, nous souhaitons définir des inputs ou des structures côté server__
Cela est possible avec les fonctions ``uiOutput`` et ``renderUI``
## Outputs | Définir des élements de l'UI côté SERVER | Exemple simple
- __ui.r__:
```{r, echo = TRUE, eval = FALSE}
uiOutput(outputId = "columns")
```
- __server.r__:
```{r, echo = TRUE, eval = FALSE}
output$columns <- renderUI({
selectInput(inputId = "sel_col", label = "Column", choices = colnames(data))
})
```
----
```{r, echo = TRUE, eval = TRUE}
shinyApp(
ui = fluidPage(
selectInput(inputId = "my_data", label = "dataset : ",
choices = c("iris", "faithful")),
uiOutput(outputId = "columns")
),
server = function(input, output) {
data <- reactive(get(input$my_data, "package:datasets"))
output$columns <- renderUI({
selectInput(inputId = "sel_col", label = "Column", choices = colnames(data()))
})
})
```
## Outputs | Définir des élements de l'UI côté SERVER | Exemple plus complexe
- __On peut également renvoyer un élément plus complexe de l'UI, par exemple :__
* tout en ``layout``
* ou une ``fluidRow``
- __ui.r__:
```{r, echo = TRUE, eval = FALSE}
uiOutput(outputId = "fluidRow_ui")
```
- __server.r__:
```{r, echo = TRUE, eval = FALSE}
output$fluidRow_ui <- renderUI(fluidRow(
column(width = 3, h3("Value:")),
column(width = 3, h3(verbatimTextOutput(outputId = "slinderIn_value")))
))
```
## Outputs | Aller plus loin : construire son propre output
__Avec un peu de compétences en HTML/CSS/JavaScript, il est également possible de construire des outputs personnalisés__
Un tutoriel est disponible : [http://shiny.rstudio.com/articles/building-outputs.html](http://shiny.rstudio.com/articles/building-outputs.html)
On peut donc par exemple ajouter comme output un graphique construit avec la librairie [d3.js](https://d3js.org/). Un exemple est disponible dans le dossier ``shinyApps/build_output``.