Re: Creating a Multiple LogLinear List Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg78821] Re: [mg78779] Creating a Multiple LogLinear List Plot
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Tue, 10 Jul 2007 06:35:26 -0400 (EDT)
- Reply-to: hanlonr at cox.net
$Version
5.2 for Mac OS X (June 20, 2005)
Needs["Graphics`"];
data1=Table[{x,100x},{x,1,100,8}];
data2=Table[{x,x},{x,100,1000,80}];
data3=Table[{x,x},{x,1000,10000,800}];
DisplayTogether[LogLinearListPlot[#]&/@
{data1,data2,data3},
PlotRange->All];
Show[LogLinearListPlot[#,
DisplayFunction->Identity]&/@
{data1,data2,data3},
PlotRange->All,
DisplayFunction->$DisplayFunction];
Bob Hanlon
---- giorgioruaro at gmail.com wrote:
> Hello to everybody.
> I wanna create a semilogarithmic graph (logaritmich in xaxis scale and
> linear in the y axis) with three list of x and y values.
> I tried by MultipleListPlot[list1, list2, list3], but i can't obtain
> logaritmich x axis.
> I tried with LogLinearListPlot[list1, list2] but i able to print one
> list in the graph only.
>
> Is there anyone who can help me?
> Thanks a lot
> Giorgio
>
>