Skip to content

Commit

Permalink
improve axis titles
Browse files Browse the repository at this point in the history
  • Loading branch information
wlangera committed Mar 25, 2024
1 parent 19592dd commit df8dc11
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/markdown/data_exploratie_2023.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ p <- mas_2023_vogels %>%
geom_text(aes(label = aantal_telpunten),
position = position_dodge(width = 0.9), vjust = -0.25) +
facet_wrap(~regio) +
labs(x = "Telperiode", y = "Aantal telpunten")
labs(x = "Telperiode", y = "Totaal aantal telpunten")
save_figure(p, here(media_folder, "tellingen_vogels_2023"), devices,
dpi = 300, width = 8, height = 6)
Expand Down Expand Up @@ -426,7 +426,7 @@ p <- mas_2023_vogels %>%
geom_text(aes(label = aantal_waarnemingen),
position = position_dodge(width = 0.9), vjust = -0.25) +
facet_wrap(~regio) +
labs(x = "Telperiode", y = "Aantal waarnemingen per telpunt")
labs(x = "Telperiode", y = "Totaal aantal waarnemingen")
save_figure(p, here(media_folder, "waarnemingen_tot_vogels_2023"), devices,
dpi = 300, width = 8, height = 6)
Expand All @@ -443,7 +443,7 @@ p <- mas_2023_vogels %>%
ggplot(aes(x = periode_in_jaar, y = n, fill = regio)) +
geom_hline(yintercept = 0, alpha = 0.2, linetype = "dashed") +
geom_boxplot() +
labs(x = "Telperiode", y = "Aantal waarnemingen", fill = "Regio")
labs(x = "Telperiode", y = "Aantal waarnemingen per telpunt", fill = "Regio")
save_figure(p, here(media_folder, "waarnemingen_vogels_2023"), devices,
dpi = 300, width = 8, height = 6)
Expand Down Expand Up @@ -1175,7 +1175,7 @@ p <- mas_2023_zoogdieren %>%
geom_text(aes(label = aantal_waarnemingen),
position = position_dodge(width = 0.9), vjust = -0.25) +
facet_wrap(~regio) +
labs(x = "Telperiode", y = "Aantal waarnemingen")
labs(x = "Telperiode", y = "Totaal aantal waarnemingen")
save_figure(p, here(media_folder, "waarnemingen_tot_zoogdieren_2023"), devices,
dpi = 300, width = 8, height = 6)
Expand Down Expand Up @@ -1566,7 +1566,7 @@ p <- mas_2023_zoogdieren %>%
geom_text(aes(label = totaal_aantal),
position = position_dodge(width = 0.9), vjust = -0.25) +
facet_wrap(~landbouwstreek) +
labs(y = "Aantal individuen", x = "Telperiode", fill = "Jaar")
labs(y = "Totaal aantal individuen", x = "Telperiode", fill = "Jaar")
save_figure(p, here(media_folder, "aantal_hazen_2023"), devices,
dpi = 300, width = 8, height = 6)
Expand Down

0 comments on commit df8dc11

Please sign in to comment.