In an algorithm with 3 for loops I obtain for each loop series of data that I store in series of series. For simplification let's say it is something like this:
x = [[1,2,3],[2,8,9],[7,15,20]]
y = [[1,2,3],[4,5,6],[7,8,9]]
Each of the series needs to be represented as a line in the same plot. Axis X represents the distance so, as the loops move through a road path, different values of Y will be obtained. I could only find out how to do this for a series of series when one of the axis is just a simple series. Thanks in advance for any possible help.