When I am rendering the following code I am getting the correct graph, however, the label of the faceted variable assembly_no does not appear on the graph.

hp %>%
filter(assembly_no > 10) %>%
filter(position == 1) %>%
count(assembly_no, party) %>%
mutate(party = fct_reorder(party,n)) |>
mutate(assembly_no = as.factor(assembly_no)) |>
ggplot(aes(n, party, fill = party)) +
geom_col(width = 0.3, show.legend = FALSE) +
facet_wrap(~assembly_no,
labeller = "label_value",
scales = "free_y" )+
labs(x = "Total number of seats",
y = "Political Party",
title = "Total number of seats by political parties")
Created on 2022-09-07 by the reprex package (v2.0.1)