Reputation: 3663
I have this ggplot chart
ggplot(
data = cars,
aes(
x = dist,
y = speed
)
) +
geom_point() +
labs(
caption = "Some caption"
)
How do I change the color of the caption and make it italicized.
Upvotes: 0
Views: 1418
Reputation: 301
Adjust it with + theme(plot.caption = element_text(color = "red", face="italic"))
Upvotes: 4