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:
Hi, How can I generate lower case letters for my axis-titles? Thanks, J?rg
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.