Is it possible to pass partially italicized text labels into ggplot? I have tried using the expression
and italic
commands (expression(paste(italic("some text")))
), but these cannot be passed into a data frame because the result of the commands is not atomic. Setting the parameter fontface = "italic"
also doesn't suffice, since this italicizes the entire label, rather than just a select set of characters in the label. For instance, I would like some necessarily italicized Latin phrases to be italicized in a label (such as "in vivo" in "in vivo point").
library(ggplot)
library(ggrepel)
df <- data.frame(V1 = c(1,2), V2 = c(2,4), V3 = c("in vivo point","another point"))
ggplot(data = df, aes(x = V1, y = V2)) + geom_point() + geom_text_repel(aes(label = V3))