Applica un tema predefinito
Come hai visto nei video, ggplot2 include una serie di temi predefiniti. Provali!
Questo esercizio fa parte del corso
Comunicare con i dati nel Tidyverse
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
# Save your current plot into a variable: ilo_plot
___ <- ggplot(plot_data) +
geom_point(aes(x = working_hours, y = hourly_compensation)) +
labs(
x = "Working hours per week",
y = "Hourly compensation",
title = "The more people work, the less compensation they seem to receive",
subtitle = "Working hours and hourly compensation in European countries, 2006",
caption = "Data source: ILO, 2017"
)
# View it
ilo_plot