-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcommunity.Rmd
86 lines (72 loc) · 2.55 KB
/
community.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: "Community"
output:
html_document:
toc: false
toc_float: false
---
Teams from anywhere in the world are invited to submit forecasts once a week for one or more of the countries. Take a look at the [submission instructions](https://github.com/epiforecasts/covid19-forecast-hub-europe/wiki) and [get in touch](contact.html) with any questions.
# Teams
```{r teams, echo = FALSE, warning = FALSE, message = FALSE}
library("yaml")
library("purrr")
library("fs")
library("dplyr")
github_repo <- "epiforecasts/covid19-forecast-hub-europe"
team_df <-
gh::gh(
"/repos/{github_repo}/contents/{path}",
github_repo = github_repo,
path = "model-metadata"
) %>%
map_chr("download_url") %>%
set_names() %>%
map(read_yaml) %>%
imap_dfr(~ list(
link = .y,
authors = toString(purrr::map_chr(.x$model_contributors, "name")),
model_abbr = .x$model_abbr,
website_url = .x$website_url,
team_name = .x$team_name,
methods = .x$methods
)) %>%
mutate(
md_link = glue::glue("[Metadata]({link})"),
model_abbr = glue::glue("[{model_abbr}]({website_url})")
) %>%
select(authors, model_abbr, team_name, md_link, methods) %>%
arrange(tolower(model_abbr))
team_df %>%
relocate(
"Model name" = model_abbr,
"Authors" = authors,
"Team" = team_name,
"Methods" = methods,
"Complete metadata" = md_link
) %>%
knitr::kable(format = "markdown")
```
# The evaluation of the European Modelling Hubs
ECDC has conducted a survey among the participants of the European Modelling Hub, getting feedback and thus evaluating the European COVID-19 Forecast Hub, European COVID-19 Scenario Hub, and the European Modelling Hub meetings. The results and conclusions of the survey can be found below on the [European COVID-19 Scenario Hub webpage](https://covid19scenariohub.eu/about.html).
# Presentations
The ECDC hosts weekly calls which any forecasting team is welcome to join. Each week a different team is invited to present and discuss forecasting methods. Slides and extra content provided by the teams can be accessed below. Please note that slides might be released under a different license than the MIT license used for the rest of this website:
```{r presentations, results='asis', echo=FALSE}
files <- rev(fs::dir_ls("presentations"))
dates <- sub(
"^([0-9]{4})-([0-9]{2})-([0-9]{2})-.*$",
"\\3/\\2/\\1",
basename(files)
)
nms <- files %>%
fs::path_file() %>%
fs::path_ext_remove() %>%
substring(12) %>%
{ gsub("-", " ", .) }
sprintf(
"- %s\t\t[%s](%s)",
dates,
nms,
files
) %>%
cat(sep = "\n")
```