Re: [R] queries

2007-04-22 Thread Stephen Tucker
My apologies. Second line should be title(main="Histogram of ...",cex.main=0.5) Actually I just realized you can also do hist(rnorm(100),xlab="Data",ylab="Count",cex.main=0.5) ...this way you don't have to call title() separately. --- Stephen Tucker <[EMAIL PROTECTED]> wrote: > hist(rnorm(100

Re: [R] queries

2007-04-22 Thread Stephen Tucker
hist(rnorm(100),xlab="Data",ylab="Count",main="") title(main="Histogram of ...",cex=0.5) see ?par for details on xlab, ylab, main, and cex arguments. You can call these from title() or include them in hist(). I called title(main=..) separately to control its size separately from the rest of the te

Re: [R] queries

2007-04-22 Thread Gavin Simpson
On Sat, 2007-04-21 at 12:03 -0700, Nima Tehrani wrote: > Dear Help Desk, > > Is there any way to change some of the labels on R diagrams? > > Specifically in histograms, I would like to: > > 1. change the word frequency to count. > 2. Make the font of

Re: [R] queries

2007-04-22 Thread Ranjan Maitra
First of all, this is not a "Help Desk". Second, please make sure that you put an informative subject line: I thought this was spam and was going to delete it. Thanks, Ranjan On Sat, 21 Apr 2007 12:03:24 -0700 (PDT) Nima Tehrani <[EMAIL PROTECTED]> wrote: > Dear Help Desk, > > Is there

[R] queries

2007-04-22 Thread Nima Tehrani
Dear Help Desk, Is there any way to change some of the labels on R diagrams? Specifically in histograms, I would like to: 1. change the word frequency to count. 2. Make the font of the title (Histogram of …) smaller. 3. Have a different w