Hi I am new to use obspy.
I want to plot two streams to one plot.
I made code as below.
st1=read('/path/1.SAC')
st1+=read('/path/2.SAC')
st1.plot()
I succeed to plot two plots but what I want to do is plotting them as two colors.
When I put the option of 'color', then both colors are changed.
How can I set colors seperately?
Currently it is not possible to change the color of individual waveforms, and changing
colorwill change all waveforms as you mentioned. I suggest you make your own graph from the ObsPy Stream using Matplotlib: