On 01-Mar-10 15:53:58, Joshua Wiley wrote: > Dear Ivan, > > One thing I would add to the current discussion is the ability > of some text editors (most?) to check for matched delimiters "(...)". > I also find the highlighting of syntax makes the code easier > to read. In WinEdt and Tinn-R the basic features are very user > friendly (I'm sure others are too, but I can say those from > experience). > > Best regards, > Josh
I don't like syntax highlighting! But I go along heartily with the highlighting of delimiters. In vim (to which I'm wedded for life) it will pick up matching (), {} and []. Very useful in something like: Pbias<-rep(1,100) for(i in (5:96)){ m0<-mean(Y[(1:i)]); sd0<-sd(Y[(1:i)]) m1<-mean(Y[((i+1):100)]); sd1<-sd(Y[((i+1):100)]) se0<-sd0/sqrt(i) ; sd1<-sd1/sqrt(100-i) se<-sqrt(sd0^2 + sd1^2) Pbias[i]<-2*(1-pnorm(abs(m1-m0)/se)) } Ted. -------------------------------------------------------------------- E-Mail: (Ted Harding) <ted.hard...@manchester.ac.uk> Fax-to-email: +44 (0)870 094 0861 Date: 01-Mar-10 Time: 16:26:35 ------------------------------ XFMail ------------------------------ ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.