High-tech patent applications to the EPO by priority year by NUTS 3 regions - pat_ep_rtec

Data - Eurostat

ipc

Code
pat_ep_rtec %>%
  left_join(ipc, by = "ipc") %>%
  group_by(ipc, Ipc) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()
ipc Ipc Nobs
HT High tech - total 77430
CTE Communication technology 55419
CAB Computer and automated business equipment 54088
MGE Micro-organism and genetic engineering 51586
SMC Semiconductors 41605
AVI Aviation 21763
LSR Laser 14810

unit

Code
pat_ep_rtec %>%
  left_join(unit, by = "unit") %>%
  group_by(unit, Unit) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()
unit Unit Nobs
NR Number 144260
P_MHAB Per million inhabitants 81989
GDP_BEUR Nominal GDP in billion euro 64975
P_MACT Per million of population in the labour force 25477

geo

Code
pat_ep_rtec %>%
  left_join(geo, by = "geo") %>%
  group_by(geo, Geo) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()

time

Code
pat_ep_rtec %>%
  group_by(time) %>%
  summarise(Nobs = n()) %>%
  arrange(desc(time)) %>%
  print_table_conditional()