Re: ListPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg75993] Re: ListPlot
- From: CKWong <CKWong.P at gmail.com>
- Date: Mon, 14 May 2007 03:52:37 -0400 (EDT)
- References: <f26mqu$2pg$1@smc.vnet.net>
The function rListPlot defined below should do the job.
rListPlot[ lst : {{_, _} ..} ] := ListPlot[{#=E3=80=9A2=E3=80=9B, #=E3=80=
=9A1=E3=80=9B} & /@ lst]
rListPlot[ lst_List ] := ListPlot[{lst, Range[Length[lst]]} //
Transpose]
Example:
lst1 = Range[100]^2 + 1000;
lst2 = Table[{i, i^2 + 1000}, {i, 100}];
rListPlot[ lst1 ];
rListPlot[ lst2 ];