Good morning,
I have a problem similar to this one in a plot that i have made. In this example, I have purposely exaggerated the compression of the graph due to the caption:
iris %>%
group_by(Species) %>%
mutate(avg_sepal_length = mean(Sepal.Length)) %>%
ggplot(aes(x = Species)) +
geom_line(aes(y = avg_sepal_length, color = "How can i wrap the text in this caption in order to avoid compression of the graph?"), group = 1)
I would like to ask if someone can help me wrap the text in order to avoid such a compression of the plot.
Thank You for the help.