Re: Listplot with closed and open symbols
- To: mathgroup at smc.vnet.net
- Subject: [mg93495] Re: Listplot with closed and open symbols
- From: Bill Rowe <readnews at sbcglobal.net>
- Date: Wed, 12 Nov 2008 06:44:44 -0500 (EST)
On 11/11/08 at 7:44 AM, JMDensmore at gmail.com (kmd) wrote: >I have two list plots >b = ListPlot[{lattice1, lattice2, lattice3, lattice4, lattice5}, >PlotStyle -> {{PointSize[0.04], Red}, {PointSize[0.01], Blue}, >{PointSize[0.035], Green}, {PointSize[0.03], Brown}, >{PointSize[0.02], Yellow}}] >a = ListPlot[{lattice1a, lattice2a, lattice3a, lattice4a, lattice5a}, >PlotStyle -> {PointSize[0.04], PointSize[0.01], PointSize[0.035], >PointSize[0.03], PointSize[0.02]}] >how do I get listplot a to have open symbols? I've tried using the >plotmarker option but just can't get it to work. I would also like >to keep the scaling of the sub-lists. Here is an example using PlotMarkers. ListPlot[{RandomReal[1, {6}], RandomReal[2, {5}]}, PlotMarkers -> {{Graphics[{Red, Circle[{0, 0}]}], 0.05}, {Graphics[{Blue, Circle[{0, 0}, .001]}], .05}}] Season to taste