TidyTuesday (2026) Week 8: Science Foundation Ireland Grants Commitments

This week we’re exploring Irish STEM research and ancillary projects funded by Science Foundation Ireland (SFI) since its foundation in 2000 to its dissolution on 31st July 2024. The data comes from Ireland’s Open Data Portal.

TidyTuesday
Data Visualization
Python Programming
2026
Author

Peter Gray

Published

February 24, 2026

Chart A Timeline of Sheep in NZ

1. R code

Show code
# | echo: true
# | eval: false
# | warning: false
# | message: false

if(!(require(tidyverse))){install.packages("tidyverse"); library(tidyverse)}
if(!(require(CustomGGPlot2Theme))){install.packages("CustomGGPlot2Theme"); library(CustomGGPlot2Theme)}
if(!(require(patchwork))){install.packages("patchwork"); library(patchwork)}

sfi_grants <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/main/data/2026/2026-02-24/sfi_grants.csv')
Back to top