Re: [R] modify the name of axis of an R function

2011-12-16 Thread Martin Maechler
> David Winsemius > on Thu, 15 Dec 2011 09:56:31 -0500 writes: > On Dec 15, 2011, at 1:53 AM, plocq wrote: >> Hi, >> >> I use the function fpot of packages evd. If I call the >> fit that I obtain "fit", I want to modify the name of the >> axis and the main ti

Re: [R] modify the name of axis of an R function

2011-12-15 Thread Petr PIKAL
Hi > > Thanks you very much! The way plot(fit, main="main title", xlab="X-axis > lable", ylab="y-axis label") seems to work quite well, I didn't notice that > I could do this. > > I have in fact one more problem with it : the fact is that I have three > plots that are called by the function.

Re: [R] modify the name of axis of an R function

2011-12-15 Thread David Winsemius
On Dec 15, 2011, at 11:30 AM, plocq wrote: Thanks you very much! The way plot(fit, main="main title", xlab="X- axis lable", ylab="y-axis label") seems to work quite well, I didn't notice that I could do this. You are replying to a message on a mailing list (which most people do NOT see

Re: [R] modify the name of axis of an R function

2011-12-15 Thread plocq
Thanks you very much! The way plot(fit, main="main title", xlab="X-axis lable", ylab="y-axis label") seems to work quite well, I didn't notice that I could do this. I have in fact one more problem with it : the fact is that I have three plots that are called by the function. I can specify my thr

Re: [R] modify the name of axis of an R function

2011-12-15 Thread David Winsemius
On Dec 15, 2011, at 1:53 AM, plocq wrote: Hi, I use the function fpot of packages evd. If I call the fit that I obtain "fit", I want to modify the name of the axis and the main title that is produced by plot(fit1). Usually this would be accomplished with plot(fit, main="main title", xl

[R] modify the name of axis of an R function

2011-12-14 Thread plocq
Hi, I use the function fpot of packages evd. If I call the fit that I obtain "fit", I want to modify the name of the axis and the main title that is produced by plot(fit1). To do this, I want to create a new function where I would have the names modified. The problem is that I can't find the funct