Re: PlotLegend & Tick marks in MultipleListPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg59143] Re: PlotLegend & Tick marks in MultipleListPlot
- From: ggroup at sarj.ca
- Date: Sat, 30 Jul 2005 01:25:17 -0400 (EDT)
- References: <dc9vp2$cqc$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
> So I have two questions:
> 1. Is there some known way to convert between the relative coordinates
> and data coordinates?
> 2. If not, is there a way of (temporarily) dropping a given argument
> from a sequence of arguments in a module? For example, suppose I use a
> module of the form:
In case anyone else was wondering, I got around the problem using the
second method. I now have something like:
someMod[f_List, opts___?OptionQ]:=
Module[{..., opts1},
opts1=Select[{opts}, !MemberQ[#,PlotLegend]&;
MultipleListPlot[f, Sequence@@opts1];
(some other commands)];