Re: ScatterPlot3D with vertical lines
- To: mathgroup at smc.vnet.net
- Subject: [mg22595] Re: [mg22570] ScatterPlot3D with vertical lines
- From: BobHanlon at aol.com
- Date: Sun, 12 Mar 2000 22:55:37 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Graphics`Graphics3D`"]
data = Table[{Random[], Random[], Random[]}, {10}];
Show[ScatterPlot3D[data, DisplayFunction -> Identity] /.
Point[{x_, y_, z_}] :> Line[{{x, y, z}, {x, y, 0 }}],
DisplayFunction -> $DisplayFunction];
Bob Hanlon
In a message dated 3/11/2000 7:07:57 PM, j_flint at post4.tele.dk writes:
>I would like to make a ScatterPlot3D with vertical lines from the points
>down to the base plane. How can that be accomplished?
>