The whole purpose of the Show function is to be able to compare multiple graphs, but mine just plots the first one. I've cleared all, and Cleared Global multiple times--and redefined data1. This isn't the first time that it has done this, so I think it's something to do with the way I'm using the Show function.
Data1 has exactly the same x range. The y range should also be visible--in fact, it's the first graph in the picture below.
Asked
Active
Viewed 88 times
1
Elizabeth Kaiser
- 69
- 2
PlotRangeinShow(simplest isPlotRange -> All). – Szabolcs Oct 07 '19 at 15:51Showsets the range based on the first plot it sees. Whendata1comes first, it sets the range to be 600 to 740. When yourTablecomes first, it sets the range to be 1 through 140 since there are no x-values.If you meant for your
– MassDefect Oct 07 '19 at 15:54Tabledata to have x-values ranging from 600 to 729, useTable[{x, yourequation}, {x, 600, 729}]. If you meant them to have different x ranges, then you'll have to set thePlotRangeto include x values from 1 to 729.data1, but what you show in the screenshot has a very differentxrange. If you only stored theyvalues (notxones), then useDataRangeinListPLotto specify what the x range should be. – Szabolcs Oct 08 '19 at 07:49