I have a Pandas Serie S, with
Index Number
A 10
B 13
C 14
D 23
My target is to make a dot plot of this list with python.
I'm following this tuto : with plotly
However, I don't understand how to go from my serie to the viz.
I tried the following :
fig = px.scatter(s, x="number", y="index",
title="Title")
fig.show()
But nothing happens.
What is wrong in my process to go to the plotly dot plot ?