Re: [R] R training courses

2006-02-02 Thread Wei Qiu
I am also looking for this kind of courses. Any suggestion will be greatly appreciated. Lucy On Thu, 2 Feb 2006, Walker, Russell wrote: Hi All, I am interested in learning about people's experience with R training or courses. What worked, what didn't? What do you recommend? Also, if

[R] How to do the multiple plots?

2005-11-26 Thread Wei Qiu
Hi all, I am new in R tool. I have a basic question. I would like to do a combination of two multiple lines plots for one X-variable and two different sets (lists) of Y-variables. Any suggestion will be greatly appreciated. Thanks! Wei __

Re: [R] How to do the multiple plots?

2005-11-26 Thread Wei Qiu
wrote: ?lines ?matplot ?ts.plot library(zoo); ?plot.zoo On 11/26/05, Wei Qiu [EMAIL PROTECTED] wrote: Hi all, I am new in R tool. I have a basic question. I would like to do a combination of two multiple lines plots for one X-variable and two different sets (lists) of Y-variables. Any

Re: [R] How to do the multiple plots?

2005-11-26 Thread Wei Qiu
On Sat, 26 Nov 2005, Wei Qiu wrote: Dear Gabor and all, Thanks for your quick response. I tried the following. We can plot y1 and Y2 on one figs. It just shows one Y axis on the left side. I would like to show the Y1 axis on left side and Y2 Axis on right side. Any others input, Wei

[R] How to plot two dataset in one fig?

2005-11-18 Thread Wei Qiu
Hi all, I am new in R tool. I would like to plot two dataset in in fig. Here is what I did for both a and b data sets jpeg(file=a.jpeg) dat-read.table('a', header=F, sep=',') dim(dat) y-dat[,1] y-y[!is.na(y)] plot(y);lines(lowess(y, f=0.05), col = (red), lwd=5) dev.off Two questions: 1. How