It's possible that this may be tagged as a duplicate question, but I have been searching this site and the rest of the internet for at least 2 hours looking for an answer to no avail.
I have a series of lists of 200 lines of x and y values (let's call them DataList1, DataList2, etc.) For example:
DataList1=[{150, 15745.7}, {152, 15571.2}, {154, 15401.}, {156, 15253.2}]
I used ListPlot on each individual list of x and y values which gives me a very nice graph (Graph1, Graph2, etc.) For example:
Graph1 = ListPlot[DataList1, PlotRange -> All, PlotStyle -> {RGBColor[1, 0, 0]}]
After creating each graph (and assigning a variable name to each graph) I would now like to use list animate to show one graph, then the next one, and so on. However, if I use the code:
ListAnimate[Graph1, Graph2, Graph3]
it does not create the animation box, it only shows a list of each plot as a thumbnail.
There are a total of 19 Graphs / Lists that are to be included in the series.
What am I doing wrong?????
Thank you in advance for any help!
Comments
Post a Comment