R-Help: Is there a way to use multiple colors in the title of a plot? For instance, to have certain words be red, and certain words be blue? thanks in advance, Leo -- 1718 Commonwealth Avenue Apt 2 Brighton, MA 02135 Cell: 617-599-0037
Leo Espindle wrote:> R-Help: > > Is there a way to use multiple colors in the title of a plot? For > instance, to have certain words be red, and certain words be blue?No, you have top typset them word by word. Uwe Ligges> thanks in advance, > Leo >
Try something like this: plot(1:10) mtext(c("title1", "title2"), col = c(2:3), at = c(4, 6)) Leo Espindle wrote:>R-Help: > >Is there a way to use multiple colors in the title of a plot? For >instance, to have certain words be red, and certain words be blue? > >thanks in advance, >Leo > > >