Show command.
- To: mathgroup at smc.vnet.net
- Subject: [mg45379] Show command.
- From: gtsavdar at auth.gr (George)
- Date: Sun, 4 Jan 2004 04:56:11 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
I enter the following:
-----------------------------------------------------------------------------
dat = {{1, 3}, {2, 12}, {3, 22}, {4, 35}, {5, 70}, {6, 95}, {7, 119}};
p = ListPlot[dat, PlotStyle -> PointSize[0.02]]
a = Fit[dat, x, x]
b = Fit[dat, {1, x, x^2}, x]
pl = Plot[a, {x, -2, 9}]
p2 = Plot[b, {x, -2, 9}]
Show[p,p1,p2]
-----------------------------------------------------------------------------
Fit finds the requested things, Listplot and the 2 Plot draw the plots,
BUT Show[p,p1,p2] don't show anything. Well actually it shows the error message:
Show::gcomb: An error was encountered in combining the graphics objects
in Show[p1, .Graphics]. More...
Why Show[p,p1,p2] don't show p,p1,p2?
- Follow-Ups:
- Re: Show command.
- From: Michael Williams <williams@vt.edu>
- Re: Show command.