Is there any way to make a graph with axis labels of individual format (bold, color, ...)?
Imagine the following R code:
library(ggplot2)
data<-data.frame(x=c("a","b"),y=c(1,2))
ggplot(data)+geom_point(aes(x=x,y=y))
I would like that the label "a" had a different format (e.g. color) than label "b".