Skip to content
Prev 164096 / 398506 Next

Identifying a subset of observations on a 3d-scatter plot using cloud()

On Sat, Dec 6, 2008 at 9:27 PM, Giam Xingli <giam at nus.edu.sg> wrote:
For colors, you could try

cloud(z ~ x * y, ..., groups = (x > c1 & y > c2 & z > c3))

For interactive labeling, see ?panel.identify.cloud. Direct labeling
is also possible, but you need to write a panel function
('panel.3dtext' in the latticeExtra pacakge may help).

-Deepayan