Re: plotsymbol
- To: mathgroup at smc.vnet.net
- Subject: [mg25053] Re: [mg25006] plotsymbol
- From: BobHanlon at aol.com
- Date: Sun, 3 Sep 2000 22:11:10 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
In a message dated 9/1/2000 1:30:25 AM, mr.fi at cbs.dk writes:
>I have two dataset consisting of 500 points (originate from a diffusion
>process). Plotting using the command
>MultipleListPlot[Data1a, Data2a, Epilog -> PointSize[0], PlotJoined ->
>True,
> PlotRange -> {{0, 100}, {0, 10}} ,
> PlotStyle -> {{RGBColor[0, 0, 0]}, {RGBColor[0, 0, 0]}}]
>
>is giving lines which is to thick. Also just plotting the points looks
>ugly.
>Using options
>PointSize[1/72],Thickness[1/72] described in the Matematica book page
>485-490 didn't help but writing
>
>MultipleListPlot[Data1a, Data2a, Epilog -> PointSize[0], PlotJoined ->
>True,
> PlotRange -> {{0, 100}, {0, 10}} ,
> PlotStyle -> {{RGBColor[0, 0, 0]}, {RGBColor[0, 0, 0]}}, ,
> SymbolShape -> {PlotSymbol[ Empty] , PlotSymbol[Empty ]}]
>
>gives
>PlotSymbol::"unknown": "\!\(Empty\) is an unknown type for PlotSymbol."
>and then a nice looking plot...
>
>That is the appropriated way to control the thickness of a plot from a
>densely dataset ?
>
Needs["Graphics`MultipleListPlot`"];
data1 = Sort[Table[10*Random[], {500}]];
data2 = Sort[Table[10*Random[], {500}]];
MultipleListPlot[data1, data2, PlotJoined -> True,
SymbolShape -> {None, None},
PlotStyle -> {RGBColor[1, 0, 0], RGBColor[0, 0, 1]}];
Bob Hanlon