-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShiny-Intro-snippets-reactivity.Rmd
247 lines (183 loc) · 5.72 KB
/
Shiny-Intro-snippets-reactivity.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
---
title: "Shiny: Interaktive Webapplikationen mit R"
subtitle: "Einführung"
author: "Wolf Riepl"
institute: " "
date: "Last Updated: `r Sys.time()`"
output:
xaringan::moon_reader:
chakra: libs/remark-latest.min.js
lib_dir: libs
css: ["libs/_css/my_css.css"]
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
slideNumberFormat: "%current%"
ratio: 16:9
---
## t-Test: Shiny reagiert direkt
.left-column[
* mit t-Test "spielen"
* drei Schieberegler
* **Bei jeder Änderung einer Eingabe rechnet die App <u>sofort</u> den Test neu.**
.center[.large[.blue[
`r fa("hand-point-right")`*** Wie steuern, wann Shiny rechnet? ***
]]]]
.right-column[
```{r, out.width = "95%", out.height = "95%"}
include_graphics("libs/_Images/2a_t-Test-direkt.png")
```
]
---
## t-Test: Shiny reagiert direkt: UI
### .red[Vereinfachen: Nur Mittelwert-Diff 1 Slider, Effektstärke weglassen]
.left-column[
* Schieberegler: `sliderInput()`
* HTML: Shiny-Funktion, um HTML-Code direkt zu verwenden;
hier sind `tags` möglich wie `<b>` oder `<u>`
]
.right-column[
```{r, eval = FALSE, echo = TRUE}
ui <- fluidPage(
titlePanel("t-Test Test-App"),
sidebarLayout(
sidebarPanel(
sliderInput(inputId = "N", label = "N in beiden Gruppen",
min = 10, max = 1000, value = 30),
sliderInput(inputId = "mean1", label = "Mittelwert Gruppe 1",
min = 10, max = 50, value = 10),
sliderInput(inputId = "mean2", label = "Mittelwert Gruppe 2",
min = 10, max = 50, value = 11),
HTML("Standardabweichung: fixiert auf 2"),
),
mainPanel(
htmlOutput(outputId = "ttest")
)
)
)
```
]
---
## t-Test: Shiny reagiert direkt: Server (1)
### .red[Vereinfachen: Nur Mittelwert-Diff 1 Slider, Effektstärke weglassen]
.left-column[
* Dynamische Ausgabe durch `renderText()`
* Mehrere Zugriffe auf Input-Variablen:
`input$N`, `input$mean1`, `input$mean2`
* `r fa("hand-point-right")` Shiny aktualisiert die Ausgabe, sobald sich ein Input ändert
]
.right-column[
```{r, echo = TRUE, eval = FALSE}
server <- function(input, output, session) {
output$ttest <- renderText({ #<<
set.seed(1975)
data <- data.frame(
x = c(rnorm(n = input$N, mean = input$mean1, sd = 2), #<<
rnorm(n = input$N, mean = input$mean2, sd = 2)), #<<
group = c(rep("Group 1", input$N), rep("Group 2",input$N)) #<<
)
ttest <- t.test(x ~ group, data = data)
effsize <- tes(ttest$statistic, n.1 = input$N, n.2 = input$N, #<<
verbose = FALSE)
```
]
---
## t-Test: Shiny reagiert direkt: Server (2)
### .red[Vereinfachen: Nur Mittelwert-Diff 1 Slider, Effektstärke weglassen]
.left-column[
* Angabe p-Wert: zuvor berechnetes Objekt `ttest`; `ttest$p.value`
* Englische Interpretation: Einfach dank `report::report()` aus der `easystats`-Sammlung
]
.right-column[
```{r, echo = TRUE, eval = FALSE}
# server <- function(input, output, session) {
# output$ttest <- renderText({ ...
paste("Mittelwert Gruppe 1:", round(mean(
data$x[data$group == "Group 1"]), 2), "<br>",
"Mittelwert Gruppe 2:", round(mean(
data$x[data$group == "Group 2"]), 2), "<br><br>",
"Standardabweichung Gruppe 1: 2<br>",
"Standardabweichung Gruppe 2: 2<br><br>",
"<b>p-Wert:", format.pval(ttest$p.value, #<<
digits = 2), "</p>",
"Effektstärke (Cohen's d):", effsize$d, "</b><br><br>",
"Englische Interpretation: <i>report::report()</i>:<br><br>",
report::report(ttest)) #<<
})
}
```
]
---
## t-Test: Shiny rechnet erst, wenn der User es will
Reaktive Ausdrücke - *reactive expressions*
---
## Shiny reagiert direkt
.left-column[
* einfaches Drop-Down-Feld
* Künstler / Band auswählen
* Zusatzinfos per Mauszeiger dank **plotly::ggplotly()**
* **Bei jeder neuen Auswahl zeichnet die App <u>sofort</u> die Grafik neu.**
]
.right-column[
```{r, out.width = "85%", out.height = "85%"}
include_graphics("libs/_Images/2a_simple-dropdown.png")
```
]
---
## Shiny reagiert direkt: UI
.left-column[
* Dropdown: `selectInput()`
* Grafikfeld: **`plotlyOutput()`**
* h2: Überschrift Ebene 2
]
.right-column[
```{r, eval = FALSE, echo = TRUE}
ui <- fluidPage(
titlePanel("Simples Dropdown"),
sidebarLayout(
sidebarPanel(
selectInput(inputId = "bandname", #<<
label = "Künstler / Band auswählen",
choices = artists, selected = "Drake")
),
mainPanel(
h2("Daten aus songs2000"),
plotlyOutput(outputId = "bandplot") #<<
)
)
)
```
]
---
## Shiny reagiert direkt: Server
.left-column[
* Dynamische Ausgabe durch `renderPlotly()`
* Zugriff auf Input-Variable:
`input$bandname`
* `r fa("hand-point-right")` Shiny aktualisiert die Ausgabe, sobald sich der Input ändert
* `ntes_label()`: Benutzerdefinierte Funktion, siehe Skript - nicht jeden Monat beschriften
]
.right-column[
```{r, echo = TRUE, eval = FALSE}
server <- function(input, output, session) {
output$bandplot <- renderPlotly({ #<<
p <- songsdata %>%
filter(artist == input$bandname) %>%
ggplot(aes(x = year_month, y = indicativerevenue,
color = song, group = artist)) +
geom_point(size = 1.5) +
labs(title = paste("Songs von", input$bandname), #<<
x = "Monat und Jahr",
y = "Indicative Revenue in USD") +
scale_x_discrete(breaks = ntes_label()) +
scale_y_continuous(labels = scales::label_dollar(scale = 1000)) +
theme_bw(base_size = 14) +
theme(axis.text.x = element_text(angle = 90),
legend.position = "none")
ggplotly(p)
})
}
```
]
---