: [R] R plot problems

2004-10-17 Thread Ivy_Li
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 don't know how to write

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

: : [R] R plot problems

2004-10-17 Thread Ivy_Li
-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 Hi Ivy, How about x - data.frame(main.name=AAA, x.name=rep(c(Apply,Watermelon,Lemon,Banana

RE: ??: [R] R plot problems

2004-10-17 Thread Austin, Matt
17, 2004 19:27 PM To: Bobby Corpus Cc: Henric Nilsson; [EMAIL PROTECTED] Subject: ??: ??: [R] R plot problems Yes! You are right ! It is perpendicular to the axis. Thank you very much! Could I choose the angle ,such as 45 degree? Best Regards! Ivy Li YMS in Production Testing Semiconductor

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

??: [R] R plot problems

2004-10-17 Thread Ivy_Li
] -- ???: Jim Lemon [mailto:[EMAIL PROTECTED] : 2004?10?17? 18:28 ???: Ivy_Li ??: Re: [R] R plot problems Ivy_Li wrote: Hello Everyboby: Could I consult everyboby two problems about plot. Recently, I am doing some analysis in plot. Now I can draw

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