I have this:
fig = plt.subplot2grid((count, count), (i, 0), rowspan=1, colspan=count)
fig.plot(x, y, label='trup')
I also want to scatter another time series, on the same figure, with the same axes and scale, something like
fig.scatter(x2, y2, label='scatter')
How do I do this?
Edit: This works, but I am getting 2 different pairs of axes:
fig = plt.subplot2grid((1, 1), (0, 0), rowspan=1, colspan=count)
fig.plot(x,y)
plt.scatter(u, v)
How do I make sure they are on the same exact axis?
