MathGroup Archive 1998

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

Search the Archive

Re: MultipleListPlot with Log Linear Scale


  • To: mathgroup@smc.vnet.net
  • Subject: [mg11508] Re: MultipleListPlot with Log Linear Scale
  • From: David Annetts <dannetts@laurel.ocs.mq.edu.au>
  • Date: Fri, 13 Mar 1998 12:21:59 -0500
  • Organization: CRCAMET/Macquarie University
  • References: <6e86n0$njo@smc.vnet.net>

Hi

> Dear all,
>
> Can anyone be kind enough as to guide me on how to produce
> MultipleListPlot with Log Linear scale (Log scale on Y-axes, linear
> scale on X-axes). I can't seem to find it in the Mathematica Book nor
> the www.wolfram.com site. Thank you for your help.

 Two options spring to mind...

1.    scale your data (data = Map[{#[[1]], Log[10, #[[2]]]}&, data]),
then you can use Ticks->{LinesarScale, LogScale} in MultipleListPlot. 
This is really handy for 2D and 3D plots.  See the book by Shaw and
Tigg for more on this.

2.    Define a new function LinearLogMultipleListPlot which includes
    Options[LinearLogMultipleListPlot] :=
Join[Options[LinearLogListPlot], <any other defaults>];

--
 ==================================================================
 David Annetts                                       _____________
 http://www.ocs.mq.edu.au/~dannetts/                |C R C A M E T|
 * Ban all Multi-line signature files *             |-------------|
 Banning Systems Administration in 1998 when at     |_____        |
 CRC for Australian Mineral                         |````` \      |
 Exploration Technologies                           |`````/$\     |
 Earth Sciences                                     |````/$$$\____|
 Macquarie University, NSW 2109                     |```/$$$/.....|
 AUSTRALIA                                          |``/$$$/......|
 phone: +(1-61-2) 9850 9280, fax (1-61-2) 9850 8366  -------------
 ==================================================================




  • Prev by Date: Re: Flat riddle
  • Next by Date: Re: Re: Re: FindRoot accuracy/precision
  • Prev by thread: MultipleListPlot with Log Linear Scale
  • Next by thread: Re: MultipleListPlot with Log Linear Scale