-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.qmd
61 lines (39 loc) · 1.77 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
---
title: "home"
---
Welcome the [EFI](https://ecoforecast.org) NEON Forecast Challenge Dashboard.
This site provides daily updates to visualize recent scores of all forecasts submitted to the challenge. This site is generated using [quarto](https://quarto.org) and should be simple to customize for users familiar with RMarkdown. It is rendered daily using GitHub Actions.
```{r setup, include=FALSE, echo=FALSE, message=FALSE, warning=FALSE}
knitr::opts_chunk$set(echo=FALSE, message=FALSE, warning=FALSE)
library(tidyverse)
library(arrow)
#library(bslib)
#library(bsicons)
```
```{r}
combined <- arrow::open_dataset("cache/parquet/")
n_forecasts <- combined |> distinct(model_id, reference_datetime) |> collect() |> nrow()
n_models <- combined |> distinct(model_id) |> collect() |> nrow()
last_updated <- Sys.Date()
```
```{r eval = FALSE, include = FALSE}
layout_column_wrap(
width = "250px",
value_box(
title = "Total forecasts submitted to the EFI Challenge",
value = n_forecasts,
showcase = bs_icon("graph-up"),
theme_color = "success"
),
value_box(
title = "Unique models submitted to the EFI Challenge",
value = n_models,
showcase = bs_icon("pie-chart")
)
)
```
## Submit a forecast!
EFI currently has five open challenge themes!
Browse the current forecasts or submit your own. Learn more about the [current challenges](https://projects.ecoforecast.org/neon4cast-docs).
------------------------------------------------------------------------
This material is based upon work supported by the National Science Foundation under Grant DBI-1942280. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.