Code
tibble(source = c("wdi", "wdi", "wdi", "wdi", "wdi", "oecd", "oecd", "oecd", "eurostat", "eurostat", "eurostat", "eurostat", "eurostat", "eurostat"),
dataset = c("NE.GDI.TOTL.CD", "NE.GDI.TOTL.CD", "NY.GDP.PCAP.PP.KD", "NY.GDP.MKTP.PP.CD", "NY.GDP.PCAP.CD", "QNA", "SNA_TABLE1", "SNA_TABLE2", "nama_10_a10_e", "nama_10_a10", "namq_10_a10", "nama_10_gdp", "nama_10_lp_ulc", "namq_10_lp_ulc")) %>%
mutate(Title = read_lines(paste0("~/Library/Mobile\ Documents/com~apple~CloudDocs/website/data/", source, "/",dataset, ".qmd"), skip = 1, n_max = 1) %>% gsub("title: ", "", .) %>% gsub("\"", "", .)) %>%
mutate(Download = as.Date(file.info(paste0("~/Library/Mobile\ Documents/com~apple~CloudDocs/website/data/", source, "/", dataset, ".RData"))$mtime),
Compile = as.Date(file.info(paste0("~/Library/Mobile\ Documents/com~apple~CloudDocs/website/data/", source, "/", dataset, ".html"))$mtime)) %>%
mutate(Compile = paste0("[", Compile, "](https://fgeerolf.com/data/", source, "/", dataset, '.html)')) %>%
print_table_conditional_20()
source | dataset | Title | Download | Compile |
---|---|---|---|---|
wdi | NE.GDI.TOTL.CD | Gross capital formation (current USD) | 2024-09-18 | [2024-09-15] |
wdi | NE.GDI.TOTL.CD | Gross capital formation (current USD) | 2024-09-18 | [2024-09-15] |
wdi | NY.GDP.PCAP.PP.KD | GDP per capita, PPP (constant 2011 international D) | 2024-09-18 | [2024-09-15] |
wdi | NY.GDP.MKTP.PP.CD | GDP, PPP (current international D) | 2024-09-18 | [2024-09-15] |
wdi | NY.GDP.PCAP.CD | GDP per capita (current USD) | 2024-09-18 | [2024-09-15] |
oecd | QNA | Quarterly National Accounts, Per Capita | 2024-06-30 | [2024-06-06] |
oecd | SNA_TABLE1 | Gross domestic product (GDP) | 2024-06-30 | [2024-09-15] |
oecd | SNA_TABLE2 | Disposable income and net lending - net borrowing | 2024-04-11 | [2024-07-01] |
eurostat | nama_10_a10_e | Employment by A*10 industry breakdowns | 2024-09-18 | [2024-09-15] |
eurostat | nama_10_a10 | Gross value added and income by A*10 industry breakdowns | 2024-09-15 | [2024-09-15] |
eurostat | namq_10_a10 | Gross value added and income A*10 industry breakdowns | 2024-09-18 | [2024-09-15] |
eurostat | nama_10_gdp | GDP and main components (output, expenditure and income) | 2024-09-15 | [2024-09-15] |
eurostat | nama_10_lp_ulc | Labour productivity and unit labour costs | 2024-09-15 | [2024-09-15] |
eurostat | namq_10_lp_ulc | Labour productivity and unit labour costs | 2024-09-15 | [2024-09-15] |