Using the rggobi
package I launch Ggobi with specified colors:
library(rggobi)
g <- ggobi(iris)
clustering <- hclust(dist(iris[,1:4]), meth="average")
classes <- cutree(clustering, 3)
glyph_colour(g[1]) <- classes
When I select a yellow point with the brush, then all the yellow points are active:
This is, I assume, the expected behavior. But when I select a red point, there are still some remaining non-active red points:
Is it a bug ? Is there something to do to get the expected behavior ?
Update
Mmmm.. actually this is not the expected behaviour : this is not what we get by running the automatic brushing in Ggobi by selecting a variable.. I'm pursuing my investigations