On 9/13/08, June Kim <[EMAIL PROTECTED]> wrote:
> Hello,
>
>  I have a multivariate data with a single Y variable and 9 X variables.
>  I tried drawing a parallel coordinates with the data set without a
>  problem, using lattice library. However, I want to do some brushing on
>  the graph. For example, I want to distinguish the group of data lines
>  of which Y values are bigger than 0.5. It could be through
>  coloring(red line, maybe).

Lattice is not a good tool for interactive brushing. For
non-interactive grouping, you could do

parallel(iris[1:4], groups = iris$Species, horizontal.axis = FALSE)
parallel(iris[1:4], groups = (iris$Sepal.Width < 3), horizontal.axis = FALSE)

etc.

-Deepayan

______________________________________________
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.

Reply via email to