-
Notifications
You must be signed in to change notification settings - Fork 3
/
application.Rmd
72 lines (55 loc) · 1.92 KB
/
application.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
# Structure d'une application
## Structure d'une application | Un dossier avec un seul fichier
**conventions :**
- enregistré sous le nom __app.R__
- se terminant par la commande shinyApp()
- pour les **applications légères**
<div style="text-align:center" markdown="1">
<img src="img/single_app.png" alt="Drawing" style="width: 60%;">
</div>
## Structure d'une application | Un dossier avec un seul fichier
```{r, eval = FALSE}
library(shiny)
ui <- fluidPage(
sliderInput(inputId = "num", label = "Choose a number",
value = 25, min = 1, max = 100),
plotOutput("hist")
)
server <- function(input, output) {
output$hist <- renderPlot({
hist(rnorm(input$num))
})
}
shinyApp(ui = ui, server = server)
```
## Structure d'une application | Un dossier avec deux fichiers
**conventions :**
- côté interface utilisateur dans le script __ui.R__
- côté serveur dans le script __server.R__
- structure à **priviliégier**
<div style="text-align:center" markdown="1">
<img src="img/dual_apps.png" alt="Drawing" style="width: 60%;">
</div>
## Structure d'une application | Un dossier avec deux fichiers
__ui.R__
```{r, eval = FALSE}
library(shiny)
fluidPage(
sliderInput(inputId = "num", label = "Choose a number",
value = 25, min = 1, max = 100),
plotOutput("hist")
)
```
__server.R__
```{r, eval = FALSE}
library(shiny)
function(input, output) {
output$hist <- renderPlot({hist(rnorm(input$num))})
}
```
## Structure d'une application | données/fichiers complémentaires
- le code __R__ tourne au niveau des scripts __R__, et peut donc accéder de façon relative à tous les objets présents dans le dossier de l'application
- l'application web, comme de convention, accède à tous les éléments présents dans le dossier ``www`` (css, images, javascript, documentation, ...)
<div style="text-align:center" markdown="1">
<img src="img/more_apps.png" alt="Drawing" style="width: 70%;">
</div>