Skip to content

Commit

Permalink
use sorted results for qmd
Browse files Browse the repository at this point in the history
  • Loading branch information
jaktk committed Feb 18, 2025
1 parent aa85bbf commit dd07b3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ months <- c("January", "February", "March", "April", "May", "June", "July", "Aug
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")
grants <- read_csv("results/combined_results.csv") |>
grants <- read_csv("results/combined_results_sorted.csv") |>
mutate(deadline_year = as.numeric(str_extract(deadline, "\\d{4}")),
deadline_month = str_extract(deadline, paste(months, collapse = "|")),
deadline_month_numeric = month(parse_date_time(deadline_month, "b"))
Expand Down

0 comments on commit dd07b3c

Please sign in to comment.