Hi,
I am trying to plot “trace6_7” which has a condition on y value. it only display part of data.
However trace_all which has no condition on y axis displays all data correctly.
There might be on the conditioning (or anything else). I couldn’t understand.
what might be the problem ?
here is the the structure
trace6_7= go.Scatter(
x=df.index,
y= df[(df[‘M’] >= 6) & ( df[‘M’] < 7) ][‘M’].astype(float),
mode=‘markers’,
marker=dict(size=10, color=‘navy’)
)
trace_all= go.Scatter(
x=df.index,
y=df[‘M’],
mode=‘markers’,
marker=dict(size=10, color=‘black’)
)
kind regards