RE: [R] Highlighting points in a scatter plot matrix

2005-03-22 Thread Mulholland, Tom
l = "navy",axes = F,xlab = names(iris)[j],ylab = names(iris)[k]) points(iris[outlier,j],iris[outlier,k],pch = 20, col = "red") } } } > -Original Message- > From: Brett Stansfield [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 22 March 20

Re: [R] Highlighting points in a scatter plot matrix

2005-03-21 Thread Uwe Ligges
Brett Stansfield wrote: Dear R I recently did a scatterplot matrix using the following command pairs(sleep[c("SlowSleep", "ParaSleep", "logbw", "logbrw", "loglife", "loggest")],col=1+as.integer(ParaSleep > 5.5 | SlowSleep > 15.7)) this highlighted outlying points for some of the x,y plots that I ne

[R] Highlighting points in a scatter plot matrix

2005-03-21 Thread Brett Stansfield
Dear R I recently did a scatterplot matrix using the following command pairs(sleep[c("SlowSleep", "ParaSleep", "logbw", "logbrw", "loglife", "loggest")],col=1+as.integer(ParaSleep > 5.5 | SlowSleep > 15.7)) this highlighted outlying points for some of the x,y plots that I needed to identify. Unfort