Re: How to remove unwanted, garbage plotmarkers
- To: mathgroup at smc.vnet.net
- Subject: [mg125550] Re: How to remove unwanted, garbage plotmarkers
- From: Bob Hanlon <hanlonr357 at gmail.com>
- Date: Sun, 18 Mar 2012 02:45:39 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <201203150533.AAA09603@smc.vnet.net>
One workaround would be to break it into two plots and then combine
them back together.
n = 1;
Show[
ListLogPlot[#,
Joined -> True,
PlotStyle -> (Darker /@ {Blue, Red})[[n]],
PlotMarkers ->
{{\[EmptyCircle], 12}, {\[EmptyUpTriangle],
14}}[[n++]],
PlotRange -> {{0, 10}, {2, 40}},
PlotRangeClipping -> False] & /@
{{{1, 4}, {5, 4*5}, {10, 4*10}},
{{1, 1}, {5, 5}, {10, 10}}}]
Bob Hanlon
On Thu, Mar 15, 2012 at 1:33 AM, Myeong Ae Kang <makang at purdue.edu> wrote:
> I'm enclosing an example.
>
> ListLogPlot[{{{1, 4}, {5, 4*5}, {10, 4*10}}, {{1, 1}, {5, 5}, {10,
> 10}}}, Joined -> True,
> PlotMarkers -> {\[EmptyCircle], \[EmptyUpTriangle]},
> PlotRange -> {{0, 10}, {2, 40}}, PlotRangeClipping -> False]
>
> In this example, there is the problematic plotmarker on the X-axis in the plot.
>
>
> I found a similar post to this. But, "Show" with "ListLogPlot" and "PlotRange" doesn't work with this.
>
> Help me.
>
>
> ----- Original Message -----
> From: "Myeong Ae Kang" <makang at purdue.edu>
> To: mathgroup at smc.vnet.net
> Sent: Tuesday, March 13, 2012 4:03:45 AM
> Subject: How to remove unwanted, garbage plotmarkers
>
> Hello.
>
> In listplot, I have a problem.
>
> Whenever I generate a listplot, there are the unwanted plotmarkers shown at the points where the X-axis and the joined-lines of data meet.
> The plotmarker type is the same as the type used for the first data.
>
> I'm using Mathematica 7.0.
>
> How can I remove or not generate these garbage plotmarkers.
>
- References:
- Re: How to remove unwanted, garbage plotmarkers
- From: Myeong Ae Kang <makang@purdue.edu>
- Re: How to remove unwanted, garbage plotmarkers