How do I plot multiple series with different x-values in Pandas? I expect the following to work but it seems to produce multiple figures.
rawdat.plot(x='ts', y=['bid','ask'], marker='.', lw=0)
plot.hold()
rawdat.plot(x='lastTrade', y='last', marker='x', lw=0)
plt.show()