Re: Combining plots
- To: mathgroup at smc.vnet.net
- Subject: [mg48639] Re: Combining plots
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Wed, 9 Jun 2004 04:16:57 -0400 (EDT)
- Organization: Universitaet Leipzig
- References: <ca3gro$rsi$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
Block[{$DisplayFunction=Identity},
a=ListPlot[{1,2,3}];
b=ListPlot[{4,5,5}]
];
Show[a,b]
Regards
Jens
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]
>
> Now Mathematica draws 3 graphics, one of a, b and one of a and b
> combined. I want to only see the third combined graph and not the first
> two graphs. Is that possible?
>
> I tried something with setting DisplayFunction to Identity in a and b,
> but then Show doesn't show anything... Help!
>
> Thanks!
>
> Johan