Skip to content
Prev 157013 / 398506 Next

lower / upper case letters in a plot

An example would help.

You generally control the titles using arguments like main, xlab, ylab, 
sub in the plotting functions or afterwards using title() function. You 
can get the upper/lower case using toupper()/tolower() functions. See 
help(par), help(title), help(tolower). Here is an example:


string <- "My x-axis corresponding to something"
plot( rnorm(10), xlab=toupper(string) )

Regards, Adai
J?rg Gro? wrote: