MathGroup Archive 2006

[Date Index] [Thread Index] [Author Index]

Search the Archive

RE: Use color with ListPlot?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg67957] RE: [mg67898] Use color with ListPlot?
  • From: "David Park" <djmp at earthlink.net>
  • Date: Thu, 13 Jul 2006 06:55:57 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

Throw ListPlot into the ash can. I changed your last point to complete the
triangle (if that is what you meant). I also plotted both the line and the
points.

Needs["Graphics`Colors`"]

pts = {{1, 2}, {4, 2}, {1, 4}, {1, 2}};

Show[Graphics[
      {SeaGreen, Line[pts],
        Red, AbsolutePointSize[5],
        Point /@ pts}
      ],
    AspectRatio -> Automatic,
    Frame -> True,
    PlotLabel -> "Colored Line and Points",
    Background -> Linen,
    ImageSize -> 500
    ];

David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/



From: Xiangdong Liu [mailto:liu at vtaix.cc.vt.edu]
To: mathgroup at smc.vnet.net


Hi again,

This must be a simple question.  How do I make color plots using ListPlot?

With continuous curve, one can do something like below to get a color plot.

Plot[{Sin[x], Cos[x]}, {x, 0, 4Pi},
     PlotStyle->{{RGColorB[0,0,1], RGBColor[0,1,0]}}];

(well, except that I don't see two colors (B and G) but only one (G)).

With a list of dots that I want to connect, the following line only produces
uncolored plot.

ListPlot[{{1,2}, {4, 2}, {1,4}, {4, 2}}, PlotJoined->True,
         PlotStyle->{{RGBColor[0,0,1]}}];

Am I doing anything wrong?

Thanks!




  • Prev by Date: Re: Use color with ListPlot?
  • Next by Date: Re: Use color with ListPlot?
  • Previous by thread: Re: Use color with ListPlot?
  • Next by thread: Re: Use color with ListPlot?