Re: Creating a Multiple LogLinear List Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg78792] Re: Creating a Multiple LogLinear List Plot
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Tue, 10 Jul 2007 06:20:20 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <f6si8m$86h$1@smc.vnet.net>
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 ---------------^^^^^^^(1)^^^^^^^-^^^^^(2)^^^^ (1) You meant *ListLogLinearPlot* (2) list1 and list2 must be passed as a list of arguments, i.e. {list1, list2). See the example below. > list in the graph only. > > Is there anyone who can help me? > Thanks a lot > Giorgio Try the following example: list1 = Table[{n, Sqrt[n]}, {n, 100}]; list2 = Table[PartitionsQ[n], {n, 20}]; ListLogLinearPlot[{list1, list2}, Joined -> True] Regards, Jean-Marc