-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
85 lines (67 loc) · 1.75 KB
/
index.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
---
title: "COPUS"
author: "Stephan Koenig"
format:
html:
highlight-style: ayu
theme:
light: flatly
dark: darkly
embed-resources: true
citations-hover: true
typst: default
bibliography: references.bib
csl: ieee.csl
editor_options:
markdown:
wrap: sentence
---
## Classroom Observation Protocol for Undergraduate STEM (COPUS)
Classroom Observation Protocol for Undergraduate STEM (COPUS) captures the activities of instructors and students during a class [@smith2013].
The protocol strictly quantifies the time spent on these activities and not the quality of instruction. Activities can also be grouped/collapsed into more general codes [@smith2014]. See @tbl-codes for a description of activites and their corresponding group.
```{r}
#| label: setup
#| echo: false
#| message: false
library(conflicted)
library(here)
source(here("R", "functions.R"))
copus_dir <- here("data", "raw")
codes_path <- here("data", "codes.csv")
copus <- process_copus(copus_dir, codes_path)
```
### Data
```{r}
#| label: fig-codes-plots
#| echo: false
#| message: false
#| fig-cap: "COPUS activities"
#| fig-subcap:
#| - "Profile"
#| - "Timeline"
#| layout-ncol: 2
plot_codes_bars(copus)
plot_codes_timelines(copus)
```
```{r}
#| label: fig-collapsed-codes-plots
#| echo: false
#| message: false
#| fig-cap: "Collapsed COPUS codes [@smith2014]"
#| fig-subcap:
#| - "Profile"
#| - "Timeline"
#| layout-ncol: 2
plot_collapsed_codes_bars(copus)
plot_collapsed_codes_timelines(copus)
```
### COPUS code description
`#show figure: set block(breakable: true)`{=typst}
```{r}
#| label: tbl-codes
#| echo: false
#| message: false
#| tbl-cap: "COPUS activity descriptions"
get_code_descritpion_table(codes_path)
```
`#set block(breakable: false)`{=typst}