Economic accounts for agriculture by NUTS 2 regions - agr_r_accts

Data - Eurostat

indic_ag

Code
agr_r_accts %>%
  left_join(indic_ag, by = "indic_ag") %>%
  group_by(indic_ag, Indic_ag) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
indic_ag Indic_ag Nobs
PROD_BP Production value at basic price 1341712
PROD_PP Production value at producer price 1059398
SUBS Subsidies on products 956796
TAX Taxes on products 874934

itm_newa

Code
agr_r_accts %>%
  left_join(itm_newa, by = "itm_newa") %>%
  group_by(itm_newa, Itm_newa) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

unit

Code
agr_r_accts %>%
  left_join(unit, by = "unit") %>%
  group_by(unit, Unit) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
unit Unit Nobs
MIO_NAC Million units of national currency 2119663
MIO_EUR Million euro 2113177

geo

Code
agr_r_accts %>%
  left_join(geo, by = "geo") %>%
  group_by(geo, Geo) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}