Re: : [R] R plot problems

2004-10-17 Thread Bobby Corpus
Email: [EMAIL PROTECTED] -- : Henric Nilsson [mailto:[EMAIL PROTECTED] : 20041015 17:39 : Ivy_Li : [EMAIL PROTECTED] : Re: [R] R plot problems At 16:17 2004-10-15 +0800, you wrote: [...] I want to rotate the direction of x-coordinates' letter so that it can show all. But I

RE: ??: [R] R plot problems

2004-10-17 Thread Austin, Matt
Manufactory International(ShangHai) Corporation #18 ZhangJiang Road, PuDong New Area, Shanghai, China Tel: 021-5080-2000 *11754 Email: [EMAIL PROTECTED] -- : Bobby Corpus [mailto:[EMAIL PROTECTED] : 20041018 10:01 : Ivy_Li : Henric Nilsson; [EMAIL PROTECTED] : Re: : [R] R plot problems

Re: :: [R] R plot problems

2004-10-17 Thread Gabor Grothendieck
-help at stat.math.ethz.ch : : Re: : [R] R plot problems : : : Hi Ivy, : : How about : : x - data.frame(main.name=AAA, : x.name=rep(c(Apply,Watermelon,Lemon,Banana, :Grape,Pineapply,Cherry,Peach,Orange,Mango,Strawbe rry),each=5), : y.name=(1:55)) : par(las=2); : plot(x$x.name, x

Re: [R] R plot problems

2004-10-15 Thread Henric Nilsson
At 10:51 2004-10-15 +0100, you wrote: If you are using base grafics, you use the argument srt (see help(par)), How do you get a, say, 45 degree rotation of the axis labels using `srt'? The help page for par's `las' argument says Note that other string/character rotation (via argument srt to par)

Re: [R] R plot problems

2004-10-15 Thread Marc Schwartz
On Fri, 2004-10-15 at 07:18, Henric Nilsson wrote: At 10:51 2004-10-15 +0100, you wrote: If you are using base grafics, you use the argument srt (see help(par)), How do you get a, say, 45 degree rotation of the axis labels using `srt'? The help page for par's `las' argument says Note

RE: [R] R plot problems

2004-10-15 Thread Liaw, Andy
Use text(), for which srt will work. As an example: plot(rnorm(20), rnorm(20), xaxt=n) text(-2:2, rep(par(usr)[3], 5), c(negative two, negative one, zero, one, two), srt=45, xpd=NA, adj=1) HTH, Andy From: Henric Nilsson At 10:51 2004-10-15 +0100, you wrote: If you are using