generated from kogpsy/neuroscicomplabFS22
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webexercises.qmd
134 lines (82 loc) · 4.85 KB
/
webexercises.qmd
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
---
title: "Webexercises"
---
```{r, echo = FALSE, results='asis'}
knitr::opts_chunk$set(echo = FALSE)
# Uncomment to change widget colours:
#style_widgets(incorrect = "goldenrod", correct = "purple", highlight = "firebrick")
```
This is a Web Exercise template created by the [psychology teaching team at the University of Glasgow](http://www.psy.gla.ac.uk), based on ideas from [Software Carpentry](https://software-carpentry.org/lessons/). This template shows how instructors can easily create interactive web documents that students can use in self-guided learning.
The `{webexercises}` package provides a number of functions that you use in [inline R code](https://github.com/rstudio/cheatsheets/raw/master/rmarkdown-2.0.pdf) or through code chunk options to create HTML widgets (text boxes, pull down menus, buttons that reveal hidden content). Examples are given below. Render this file to HTML to see how it works.
**NOTE: To use the widgets in the compiled HTML file, you need to have a JavaScript-enabled browser.**
## Example Questions
### Fill-In-The-Blanks (`fitb()`)
Create fill-in-the-blank questions using `fitb()`, providing the answer as the first argument.
- 2 + 2 is `r fitb(4)`
You can also create these questions dynamically, using variables from your R session.
```{r}
x <- sample(2:8, 1)
```
- The square root of `r x^2` is: `r fitb(x)`
The blanks are case-sensitive; if you don't care about case, use the argument `ignore_case = TRUE`.
- What is the letter after D? `r fitb("E", ignore_case = TRUE)`
If you want to ignore differences in whitespace use, use the argument `ignore_ws = TRUE` (which is the default) and include spaces in your answer anywhere they could be acceptable.
- How do you load the tidyverse package? `r fitb(c("library( tidyverse )", "library( \"tidyverse\" )", "library( 'tidyverse' )"), ignore_ws = TRUE, width = "20")`
You can set more than one possible correct answer by setting the answers as a vector.
- Type a vowel: `r fitb(c("A", "E", "I", "O" , "U"), ignore_case = TRUE)`
You can use regular expressions to test answers against more complex rules.
- Type any 3 letters: `r fitb("^[a-zA-Z]{3}$", width = 3, regex = TRUE)`
### Multiple Choice (`mcq()`)
- "Never gonna give you up, never gonna: `r mcq(c("let you go", "turn you down", "run away", answer = "let you down"))`"
- "I `r mcq(c(answer = "bless the rains", "guess it rains", "sense the rain"))` down in Africa" -Toto
### True or False (`torf()`)
- True or False? You can permute values in a vector using `sample()`. `r torf(TRUE)`
### Longer MCQs (`longmcq()`)
When your answers are very long, sometimes a drop-down select box gets formatted oddly. You can use `longmcq()` to deal with this. Since the answers are long, It's probably best to set up the options inside an R chunk with `echo=FALSE`.
**What is a p-value?**
```{r}
opts_p <- c(
"the probability that the null hypothesis is true",
answer = "the probability of the observed, or more extreme, data, under the assumption that the null-hypothesis is true",
"the probability of making an error in your conclusion"
)
```
`r longmcq(opts_p)`
**What is true about a 95% confidence interval of the mean?**
```{r}
# use sample() to randomise the order
opts_ci <- sample(c(
answer = "if you repeated the process many times, 95% of intervals calculated in this way contain the true mean",
"there is a 95% probability that the true mean lies within this range",
"95% of the data fall within this range"
))
```
`r longmcq(opts_ci)`
## Checked sections
Create sections with the class `webex-check` to add a button that hides feedback until it is pressed. Add the class `webex-box` to draw a box around the section (or use your own styles).
::: {.webex-check .webex-box}
I am going to learn a lot: `r torf(TRUE)`
```{r, results='asis'}
opts <- c(
"the probability that the null hypothesis is true",
answer = "the probability of the observed, or more extreme, data, under the assumption that the null-hypothesis is true",
"the probability of making an error in your conclusion"
)
cat("What is a p-value?", longmcq(opts))
```
:::
## Hidden solutions and hints
You can fence off a solution area that will be hidden behind a button using `hide()` before the solution and `unhide()` after, each as inline R code. Pass the text you want to appear on the button to the `hide()` function.
If the solution is a code chunk, instead of using `hide()` and `unhide()`, simply set the `webex.hide` chunk option to TRUE, or set it to the string you wish to display on the button.
**Recreate the scatterplot below, using the built-in `cars` dataset.**
```{r}
with(cars, plot(speed, dist))
```
`r hide("I need a hint")`
See the documentation for `plot()` (`?plot`)
`r unhide()`
<!-- note: you could also just set webex.hide to TRUE -->
```{r, echo = TRUE, eval = FALSE}
#| webex.hide: "Click here to see the solution"
plot(cars$speed, cars$dist)
```