I'm struggling on how can I make a plot using two colors in the tittle. I need to use part of the title in "red" and the other part in "black".
I just wrote a toy example to facilitate the explanation:
library("tidyverse")
iris %>%
ggplot() +
geom_point(aes(x= Sepal.Length, y = Sepal.Width)) +
labs(title = "First part in black, this second part in red")
theme(plot.title = element_text(hjust = 0.5,face="bold", size = 17))
Any hint on how can I do that?