Re: Re: Bug ListPlot?
- Subject: [mg2812] Re: [mg2802] Re: Bug ListPlot?
- From: hay at haystack.demon.co.uk (Allan Hayes)
- Date: Tue, 19 Dec 1995 02:41:43 -0500
- Approved: usenet@wri.com
- Distribution: local
- Newsgroups: wri.mathgroup
- Organization: Wolfram Research, Inc.
John Tanner <John at janacek.demon.co.uk> >Subject: [mg2802] Re: Bug ListPlot? wants to use MultipleListPlot with PlotJoined -> True and no points displayed. John, Here are two ways: 1) With the package as supplied NeXT Version 2.2 <<Graphics`MultipleListPlotOld` (*my name for the old version*) lst1 = {{0,1},{1,2},{2,-1}}; lst2 = {{0,0},{1.5,2.5},{2,1}}; Show[MultipleListPlot[lst1,lst2, PlotJoined ->True, DotShapes -> (Sequence@@{}&), DisplayFunction -> Identity ]/._Point :>(Sequence@@{}), DisplayFunction ->$DisplayFunction] 2) With the new version on MathSource CleanSlate["Graphics`MultipleListPlotOld`"]; <<Graphics`MultipleListPlot` MultipleListPlot[lst1,lst2, PlotJoined ->True, SymbolShape -> None ] Allan Hayes hay at haystack.demon.co.uk