-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
40 lines (32 loc) · 1.06 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
---
title: "Grant parser overview"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r, include=FALSE}
library(reactable)
library(tidyverse)
library(lubridate)
months <- c("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December",
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")
grants <- read_csv("results/combined_results_sorted.csv") |>
mutate(deadline_year = as.numeric(str_extract(date, "\\d{4}")),
deadline_month = str_extract(date, paste(months, collapse = "|")),
deadline_month_numeric = month(parse_date_time(deadline_month, "b"))
) |>
arrange(deadline_month_numeric) |>
filter(deadline_year >= 2025)
```
```{r, echo=FALSE}
grants |>
select(-deadline_month_numeric) |>
relocate(link, .after = last_col()) |>
reactable(searchable = TRUE,
filterable = TRUE,
defaultPageSize = 50,
striped = TRUE,
highlight = TRUE,
bordered = TRUE)
```