Re: How to display one plot as an inset in another plot?
- To: mathgroup at smc.vnet.net
- Subject: [mg35340] Re: How to display one plot as an inset in another plot?
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Tue, 9 Jul 2002 06:47:48 -0400 (EDT)
- Organization: Universitaet Leipzig
- References: <agbg4v$jg1$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi, gr = Plot[Sin[x], {x, 0, Pi}, DisplayFunction -> Identity]; Plot[Cos[x], {x, 0, 2Pi}, Epilog -> {Rectangle[{2.0, -0.25}, {4.0, 1.0}, gr]}] ?? Regards Jens AES wrote: > > How to display one (complete) plot as an inset (maybe scaled, certainly > offset) within (or on top of) another plot? > > Kind of a > > Show[ plot1, {Scaled[0.5], Offset[{2,2}], plot2} ] > > capability.