Re: ListPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg75998] Re: ListPlot
- From: CKWong <CKWong.P at gmail.com>
- Date: Mon, 14 May 2007 05:47:30 -0400 (EDT)
- References: <f26mqu$2pg$1@smc.vnet.net>
I'm sorry that I posted a wrong answer a while ago. Here's a quick but unfortunately, still unsatisfactory, fix. rListPlot[ lst : {{_, _} ..}, opt___ ] := ListPlot[{#=E3=80=9A2=E3=80=9B, -#=E3=80=9A1=E3=80=9B} & /@ lst= , Axes -> {Automatic, False}, opt ]; rListPlot[ lst_List, opt___ ] := ListPlot[{lst, - Range[Length[lst]]} // Transpose, Axes -> {Automatic, False}, opt ]; Example: lst = Range[100]^2 + 1000; lst2 = Table[{i, i^2 + 1000}, {i, 100}]; rListPlot[lst]; rListPlot[lst2];