-
Notifications
You must be signed in to change notification settings - Fork 0
/
Evaluation.Rmd
86 lines (66 loc) · 2.41 KB
/
Evaluation.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
---
title: "Evaluation results Bern R Bootcamp HS 2022"
author: "MSM, DUW"
date: "9/21/2022"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE,
eval = TRUE,
message = FALSE,
warning = FALSE,
error = FALSE)
library(googlesheets4)
library(tidyverse)
library(kableExtra)
library(lubridate)
filter_year <- 2022
evaluation <- read_sheet('https://docs.google.com/spreadsheets/d/1TKm2POz-MPDQr4WS8QLgCyPj9ZJ_EQS0C2TzcjM0-og/edit?resourcekey#gid=84040835') %>%
filter(year(Timestamp) == '2022')
```
This questionnaire was filled in by `r nrow(evaluation)` participants.
## How satisfied were you with the bootcamp in general? (5 points scale, 5 = best)
```{r}
evaluation %>%
ggplot(aes(`How satisfied were you with the bootcamp in general?`)) +
geom_histogram(binwidth = 0.5) +
scale_x_continuous(limits = c(1, 5.5)) +
scale_y_continuous(breaks = seq(0,10)) +
geom_text(stat='count', aes(label=..count..), position = position_stack(vjust = 0.5),size=4) +
ylab('Count') +
theme_bw()
```
## Do you plan to rely on R in the future?
```{r}
evaluation %>%
ggplot(aes(`Do you plan to rely on R in the future?`)) +
geom_histogram(binwidth = 0.5) +
scale_x_continuous(limits = c(1, 5.5)) +
scale_y_continuous(breaks = seq(0,10)) +
geom_text(stat='count', aes(label=..count..), position = position_stack(vjust = 0.5),size=4) +
ylab('Count') +
theme_bw()
```
# Time allocation and difficulty (5 points scale, 3 = optimal)
```{r}
evaluation %>%
select(`The amount of time allocated to presentations was`,
`The amount of time allocated to practicals was`,
`Generally the level of difficulty in the presentations was`,
`Generally the level of difficulty in the practicals was`) %>%
gather(question, value) %>%
ggplot(aes(value)) +
stat_count() +
facet_wrap(~ question, scales = "free") +
scale_x_continuous(limits = c(1, 5.5)) +
geom_text(stat='count', aes(label=..count..), position = position_stack(vjust = 0.5),size=4) +
theme_bw() +
xlab('Questions') +
ylab('Count')
```
## Do you have any other remarks regarding the workshop? How can we make the next workshop better?
```{r}
evaluation %>%
select(`Do you have any other remarks regarding the workshop? How can we make the next workshop better?`) %>%
table()
```