MathGroup Archive 2002

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

Search the Archive

RE: LogLinearListPlot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg34184] RE: [mg34170] LogLinearListPlot
  • From: David.Annetts at csiro.au
  • Date: Wed, 8 May 2002 01:57:55 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

Hi Oliver,

> I have two questions:
> 1) how do I plot multiple lists using the LogLinearListPlot 
> function in
> one graph?

Since this function accepts only one list, you can't.  However, there are at
least two ways of plotting multiple lists
1.	DisplayTogether[{
		LogLinearListPlot[list1],		
		LogLinearListPlot[list2],
		LogLinearListPlot[list1]}];

2.	Apply {Log[10, #[[1]]], #[[2]]} to your compound list, then you can
use Graphics`MultipleListPlot` with all its annotation.  Because this only
plots lin-lin data, you'll have to label the axes using Ticks->{LogScale,
Automatic, None, None}

> 2)  is it possible to add a text label to a LogLinearList 
> plot using the
> Epilog function?
> (like Epilog -> {Text["text"] .....).
> It works just fine when using the ListPlot function but it 
> does not work
> with LogLinearListPlot.

dat = Table[{i, i^1.2}, {i, 1, 1000, 5}];
LogLinearListPlot[dat, Epilog -> Text["Epilog", {2, 3000}]];

Works just fine ....  Remember that Text[] requires you to specify where you
want the text to be.

Regards,

Dave.
--------------------------------------------------------
  Dr. David Annetts             EM Modelling Analyst
  Tel: (+612) 9490 5416         CSIRO DEM, North Ryde
  Fax: (+612) 9490 5467         David.Annetts at csiro.au
                 Include "usual_disclaimers"
--------------------------------------------------------


  • Prev by Date: Re: Question:
  • Next by Date: Re: 3D contour through a point[2]
  • Previous by thread: LogLinearListPlot
  • Next by thread: Value of a symbolic limit?