Greetings,
I need to display multicolor text on my chart for example
early <- 30
ontime <- 70
late <- 25
txt <- paste(early, ontime, late, sep='/')
plot(1:2, type='n')
text(1.5, 1.5, txt)
I need values for early, ontime, late in txt, be blue,green, and red respectively.
I found following post on multicolor text in title, however I wasn't able to adapt it to my problem http://blog.revolutionanalytics.com/2009/01/multicolor-text-in-r.html
Thank you for your help