Re: Combining plots
- To: mathgroup at smc.vnet.net
- Subject: [mg48674] Re: Combining plots
- From: Mario Drobics <mario.drobics at scch.at>
- Date: Thu, 10 Jun 2004 02:43:13 -0400 (EDT)
- Organization: Johannes Kepler Universitaet Linz
- References: <ca3gro$rsi$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
For some reason DisplayFunction does not work with ListPlots. There is, however, an package called MultipleListPlot which provides functionality for doing these kind of things. Try: << Graphics`MultipleListPlot` MultipleListPlot[{1, 2, 3}, {4, 5, 5}]; regards, -mario- Johan wrote: > Hello all, > > > Suppose I wish to show a combined plot, for instance > > a:=ListPlot[{1,2,3}] > b:=ListPlot[{4,5,5}] > > using Show[a,b] >