-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcourses.qmd
83 lines (59 loc) · 1.91 KB
/
courses.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
---
title: "Courses"
# format:
# html:
# toc: false
# sidebar: false
---
::: callout-warning
This page is under development. Changes should be expected.
Information presented in this website is updated twice a year. Where possible, a website is indicated where users can find complete and up-to-date description of the training.
Institutions are responsible for the quality of the training opportunities they provide.
:::
This page provides a (non-exhaustive) list of statistically oriented courses that are held in Switzerland. A more general overview of clinical research training opportunities of the [SCTO's Clinical Trial Unit (CTU) Network](https://www.sctoplatforms.ch/) can be found on the Clinical Research Careers [website](https://cr-careers.ch/education-and-training)
<!-- :::{.columns} -->
<!-- :::{.column width="20%"} -->
Courses are run in the following approximate locations:
<!-- ::: -->
<!-- :::{.column width="80%"} -->
```{r}
#| echo: false
#| message: false
#| warning: false
d <- readxl::read_excel("doc/Stats_edu_course_list_07_07_2022_modified_mg.xlsx", sheet = 3)
d$`Name of training course` <- paste0("<a href='", d$`Course link`, "'>", d$`Name of training course`, "</a>")
locs <- as.data.frame(table(trimws(unlist(strsplit(d$Location, ",")))))
locs$place <- as.character(locs$Var1)
library(magrittr)
coords <- tibble::tribble(
~lat, ~long, ~place,
47.55, 7.58, "Basel",
46.94, 7.44, "Bern",
46.20, 6.14, "Geneva",
46.19, 9.02, "Ticino",
47.36, 8.53, "Zurich",
) %>%
dplyr::full_join(locs)
library(leaflet)
coords %>%
leaflet() %>%
addTiles() %>%
addCircles(radius = 5000 + coords$Freq)
```
<!-- ::: -->
<!-- ::: -->
<br>
::: column-page
```{r}
#| echo: false
library(DT)
datatable(d[, -c(3,4)],
filter = "top",
rownames = FALSE,
escape = FALSE,
options = list(
autoWidth = TRUE
)
)
```
:::