I am using Python matplotlib. i want to superimpose scatter plots. I know how to superimpose continuous line plots with commands:
>>> plt.plot(seriesX)
>>> plt.plot(Xresampl)
>>> plt.show()
But it does not seem to work the same way with scatter. Or maybe using plot() with a further argument specifying line style. How to proceed?
thanks
You simply call the
scatterfunction twice,matplotlibwill superimpose the two plots for you. You might want to specify a color, as the default for all scatter plots is blue. This is perhaps why you were only seeing one plot.