I have a pandas dataframe like below
x s y
Date
2021-06-25 1 red 2
2021-06-28 2 red 3
2021-06-29 3 red 4
2021-06-25 1 blue 2
2021-06-28 2 blue 3
2021-06-29 3 blue 4
How can I create a scatter plot in plotly[express]/cufflinks like 
such that plot axes are x and y and red and blue are separate traces in the plot.
Any hint ?
