Re: frameticks and LogScale
- To: mathgroup at smc.vnet.net
- Subject: [mg80063] Re: frameticks and LogScale
- From: rxm at inbox.com
- Date: Sat, 11 Aug 2007 02:20:30 -0400 (EDT)
- References: <f9hfrb$fhj$1@smc.vnet.net>
:::::: On Aug 10, 6:49 am, Arkadiusz wrote:
:
: Hi,
: How can I force Mathematica6 to use logscale on x-axis.
:
Use ListLogLinearPlot. Were you using the Wavelet Explorer
package before?
Here's an example in Mathematica 6:
data = Sort@ Table[{Exp[x = RandomReal[]], x}, {20}]
ListLogLinearPlot[data,
PlotRange -> All,
Axes -> None,
Mesh -> Full,
Frame -> True,
FrameTicks -> {{Automatic, None}, {Automatic, None}}
]