Unemployment Rate: All
tail_1 <- kable(tail(MUM01_1), caption = "Unemployment Rate: All - Latest Entries")
tail_1 %>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed")) %>%
row_spec(6, bold = T)%>%
pack_rows("Latest Period", 6, 6, color = "navy")
Unemployment Rate: All - Latest Entries
Statistic
|
Age.Group
|
Sex
|
yearm
|
value
|
Seasonally Adjusted Monthly Unemployment Rate
|
15 - 74 years
|
Both sexes
|
2022M02
|
4.7
|
Seasonally Adjusted Monthly Unemployment Rate
|
15 - 74 years
|
Both sexes
|
2022M03
|
5.0
|
Seasonally Adjusted Monthly Unemployment Rate
|
15 - 74 years
|
Both sexes
|
2022M04
|
4.6
|
Seasonally Adjusted Monthly Unemployment Rate
|
15 - 74 years
|
Both sexes
|
2022M05
|
4.2
|
Seasonally Adjusted Monthly Unemployment Rate
|
15 - 74 years
|
Both sexes
|
2022M06
|
4.3
|
Latest Period
|
Seasonally Adjusted Monthly Unemployment Rate
|
15 - 74 years
|
Both sexes
|
2022M07
|
4.2
|
Unemployment Rate: 25 - 74 years
tail_2 <- kable(tail(MUM01_2), caption = "Unemployment Rate: All - 25 to 74 years")
tail_2 %>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed")) %>%
row_spec(6, bold = T)%>%
pack_rows("Latest Period", 6, 6, color = "red")
Unemployment Rate: All - 25 to 74 years
Statistic
|
Age.Group
|
Sex
|
yearm
|
value
|
Seasonally Adjusted Monthly Unemployment Rate
|
25 - 74 years
|
Both sexes
|
2022M02
|
4.1
|
Seasonally Adjusted Monthly Unemployment Rate
|
25 - 74 years
|
Both sexes
|
2022M03
|
4.4
|
Seasonally Adjusted Monthly Unemployment Rate
|
25 - 74 years
|
Both sexes
|
2022M04
|
3.9
|
Seasonally Adjusted Monthly Unemployment Rate
|
25 - 74 years
|
Both sexes
|
2022M05
|
3.4
|
Seasonally Adjusted Monthly Unemployment Rate
|
25 - 74 years
|
Both sexes
|
2022M06
|
3.3
|
Latest Period
|
Seasonally Adjusted Monthly Unemployment Rate
|
25 - 74 years
|
Both sexes
|
2022M07
|
3.1
|
Time Series
MUM01_3$Month <- as.Date(paste(MUM01_3$yearm, "01", sep = "-"), "%YM%m-%d")
MUM01_3$Year <- year(MUM01_3$Month)
Line_Total <- ggplot(data=MUM01_3, aes(x=Month, y=value, group = Age.Group, colour=Age.Group))+
geom_line(linejoin="mitre",size = 1.25, linetype = 1,alpha = 0.5)+
scale_colour_manual(values=c("navy","red"))+
geom_text_repel(aes(label=value),data = MUM01_3, size = 3)+
labs(title = "Historical Series" ,
subtitle = "January 1998 to date",
y="Unemployment Rate",
x="Month")+
theme(legend.position = "bottom")
MUM01_3_16 <- MUM01_3 %>%
filter(Year >= "2016")
MUM01_3_21 <- MUM01_3 %>%
filter(Year >= "2021")
Line_2016<-ggplot(data=MUM01_3_16, aes(x=Month, y=value, group = Age.Group, colour=Age.Group))+
geom_line(linejoin="mitre",size = 1.25, linetype = 1,alpha = 0.5)+
scale_colour_manual(values=c("navy","red"))+
labs(title = "Historical Series" ,
subtitle = "January 2016 to date",
y="Unemployment Rate",
x="Month")+
theme(legend.position = "bottom")
Line_2021<-ggplot(data=MUM01_3_21, aes(x=Month, y=value, group = Age.Group, colour=Age.Group))+
geom_line(linejoin="mitre",size = 1.25, linetype = 1,alpha = 0.5)+
scale_colour_manual(values=c("navy","red"))+
labs(title = "Historical Series" ,
subtitle = "January 2021 to date",
y="Unemployment Rate",
x="Month")+
theme(legend.position = "bottom")
Line_Total

Line_2016

Line_2021
