Re: LabeledListPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg93378] Re: LabeledListPlot
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Wed, 5 Nov 2008 04:55:35 -0500 (EST)
- Organization: Uni Leipzig
- References: <gepb26$sgs$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
Hi,
dta = Table[{tmp = Random[], Sin[Pi*tmp]}, {25}] // Sort;
ListPlot[dta] /.
Point[lst : {{_, _} ..}] :>
MapIndexed[{Text[#2[[1]], #1, {-1, -1}], Point[#1]} &, lst]
Regards
Jens
TerryH wrote:
> Hi Groupers,
> In Ver 5.2 and earler there was a function called "LabeledListPlot"
> In Ver 6.0.1 and 6.0.3 of Mathematica, it seems that this function was
> inadvertently omitted (Hopefully, it will be included in the next
> update/Version). In the meantime does anyone know of a work-around so
> that one can produce a Labeled?List Plot in Ver 6.0? TIA
> .....Terry
>