Re: Is there a way to change points style in Mathematica?
- To: mathgroup at smc.vnet.net
- Subject: [mg84217] Re: [mg84208] Is there a way to change points style in Mathematica?
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Fri, 14 Dec 2007 03:59:28 -0500 (EST)
- Reply-to: hanlonr at cox.net
$Version
6.0 for Mac OS X x86 (32-bit) (June 19, 2007)
data = Table[RandomReal[], {20}];
g = Graphics[
Polygon[{{1, 0}, {0, Sqrt[3]}, {-1, 0}}]];
ListPlot[data, PlotMarkers -> {g, 0.04}]
ListPlot[data, PlotMarkers -> {g, 0.04}, Joined -> True]
ListLinePlot[data, PlotMarkers -> {g, 0.04}]
Bob Hanlon
---- Taro <lautarovergara at gmail.com> wrote:
> Hi people,
>
> Could somebody tell whether there is a way to change points style in
> Mathematica? The default is a point but I'd like to make plots with
> crosses, triangles, etc.
>
> Thanks in advance.
>
> Taro
>