I want to change the title and the labels in a ggplot. I now have the following code:
ggplot() +
geom_line(data = VW_activations, aes(x = VW_activations$Month, y =
VW_activations$Activations, color = VW_activations$Country), size = 1.2)+
theme_light(base_size = 11, base_family = "")+
xlab("Date")+
ylab("Number of contract activations")+
scale_fill_discrete(name="Country", labels=c("AT", "BE", "CH", "DE", "ES",
"FI", "FR", "IT", "LU", "NL", "NO", "PT", "UK"))
However, this does not work and the legend title is just VW_activations$Country. Does anyone know what I am doing wrong?