I want to create a scatterplot in which the Symbols are set by one column of my input data, however after 5 diferent symbols they keep repeating ( according to the documentation there should be a lot more different symbols). How can i fix this ?
Here the example code:
data = {‘X’:[10,4,8,7,5,23,8,23,4,23,9,2,52,14,5,4,13,12,11,10],
‘Y’:[1,8,3,7,5,3,8,2,4,3,9,2,5,1,4,3,5,2,1,3]}
df= pd.DataFrame(data)
fig = px.scatter(x=df[“X”], y=df[“Y”], title=“Example Plot”,
symbol=df[“Y”])
fig.show()