Hello everyone.
I have two sets of data constructed using Transpose@{...}; they are two representations of a variable against time in two circunstances. I want to plot them together, but the resulting image looks like fig1. I don't know why this happens. I am attaching the .txt files with the data and time in case someone can help me. What I have done to construct the image is ListPlot[{data1, data2}, Joined -> True]
Thanks for reading. Jaime.
Try the option PlotRange->All
PlotRange->All
ListPlot[{data1, data2}, Joined -> True, PlotRange -> All]
It works fine. Thank you very much
Jaime,
Dont transpose when you already have x,y pairs
Do
ListPlot[{data1, data2}]
The documentation has good examples of this. (Look at 6th example under Scope).
Regards
Neil
The ListPlot command choosses the axis ranges automatically and drops your data. Try to add: PlotRange -> All
Succes.