Message-ID: <48DA4EC1.8020000@imperial.ac.uk>
Date: 2008-09-24T14:29:21Z
From: Adaikalavan Ramasamy
Subject: lower / upper case letters in a plot
In-Reply-To: <E8237394-5264-4A11-850C-665ADFB56870@licht-malerei.de>
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.