Updated 3

This commit is contained in:
Filipe Rodrigues 2023-06-17 14:54:18 +01:00
parent 1936aa9f16
commit 8e84ad7d63

View File

@ -27,6 +27,8 @@ df$AGE[df$AGE == "5564"] <- "55-64"
# Then plot them and save the output
plot <- ggplot(df, aes(x = AGE, y = Value)) +
geom_col()
geom_col() +
xlab("Grupo etário") +
ylab("EMP1")
ggsave(plot = plot, "output.png")