Re: ScatterPlot3D Plot Symbol
- To: mathgroup at smc.vnet.net
- Subject: [mg50787] Re: ScatterPlot3D Plot Symbol
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Tue, 21 Sep 2004 03:49:03 -0400 (EDT)
- Organization: Universitaet Leipzig
- References: <cilcul$r1c$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
no ScatterPlot3D[] but:
data1 = Table[Random[], {10}, {3}];
data2 = Table[Random[], {16}, {3}];
Show[Graphics3D[{
Text["\[HappySmiley]", #, TextStyle -> {FontSize -> 18}] & /@
data1,
Text["\[GraySquare]", #] & /@ data2
}
]
]
Regards
Jens
Thomas Dowling wrote:
>
> Hi,
>
> I'd like to know if it is possible to change the plot symbol in
> ScatterPlot3D plots when using Mathematica?. How can I change the
> plot symbol from a circle to a triangle, say? What I am after really
> is a 3D plot two sets of data points each with different symbols.
>
> Thanks for your help,
> Thomas Dowling.