lfsi_long_q %>%filter(geo =="FR", sex =="T", s_adj =="SA", unit =="THS_PER", time %in%c("2015Q2", "2021Q2", "2019Q2", "2017Q2")) %>%filter(!is.na(values)) %>%left_join(indic_em, by ="indic_em") %>%select(indic_em, Indic_em, time, values) %>%spread(time, values) %>%print_table_conditional()
indic_em
Indic_em
2015Q2
2017Q2
2019Q2
2021Q2
E_E
Transition employment - employment
25259
25550
25999
26267
E_I
Transition employment - outside the labour force
564
549
597
635
E_U
Transition employment - unemployment
527
441
444
444
I_E
Transition outside the labour force - employment
448
616
506
718
I_I
Transition outside the labour force - outside the labour force
16598
16881
17133
16835
I_U
Transition outside the labour force - unemployment
684
746
632
698
U_E
Transition unemployment - employment
644
637
598
632
U_I
Transition unemployment - outside the labour force
507
524
539
529
U_U
Transition unemployment - unemployment
1863
1640
1414
1238
EE, II
Code
lfsi_long_q %>%filter(geo =="FR", sex =="T", s_adj =="SA", unit !="THS_PER", indic_em %in%c("E_E", "I_I")) %>%filter(!is.na(values)) %>%left_join(indic_em, by ="indic_em") %>%select(indic_em, Indic_em, time, values) %>%quarter_to_date() %>% ggplot +theme_minimal() +xlab("") +ylab("") +geom_line(aes(x = date, y = values/100, color = Indic_em)) +scale_color_manual(values =viridis(3)[1:2]) +scale_x_date(breaks =as.Date(paste0(seq(1960, 2022, 1), "-01-01")),labels =date_format("%y")) +theme(legend.position =c(0.3, 0.85),legend.title =element_blank()) +scale_y_continuous(breaks =0.01*seq(0, 100, 1),labels = scales::percent_format(acc =1))
Italy
EE, II
Code
lfsi_long_q %>%filter(geo =="IT", sex =="T", s_adj =="SA", unit !="THS_PER", indic_em %in%c("E_E", "I_I")) %>%filter(!is.na(values)) %>%left_join(indic_em, by ="indic_em") %>%select(indic_em, Indic_em, time, values) %>%quarter_to_date() %>% ggplot +theme_minimal() +xlab("") +ylab("") +geom_line(aes(x = date, y = values/100, color = Indic_em)) +scale_color_manual(values =viridis(3)[1:2]) +scale_x_date(breaks =as.Date(paste0(seq(1960, 2022, 1), "-01-01")),labels =date_format("%y")) +theme(legend.position =c(0.3, 0.85),legend.title =element_blank()) +scale_y_continuous(breaks =0.01*seq(0, 100, 1),labels = scales::percent_format(acc =1))