Skip to content
Snippets Groups Projects
Commit aa605c65 authored by DIANE's avatar DIANE
Browse files

markers size

parent 7d4a0d29
No related branches found
No related tags found
No related merge requests found
...@@ -89,11 +89,13 @@ with container2: ...@@ -89,11 +89,13 @@ with container2:
#fig = px.scatter(data, x=axis1, y=axis2, color= colors) #fig = px.scatter(data, x=axis1, y=axis2, color= colors)
st.write('Scores plot') st.write('Scores plot')
fig = px.scatter_3d(data, x=axis1, y=axis2, z = axis3, color=colors) fig = px.scatter_3d(data, x=axis1, y=axis2, z = axis3, color=colors)
fig.update_traces(marker=dict(size=4))
else: else:
fig = px.scatter_3d(t, x=axis1, y=axis2, z = axis3) fig = px.scatter_3d(t, x=axis1, y=axis2, z = axis3)
fig.update_traces(marker=dict(size=4))
st.plotly_chart(fig) st.plotly_chart(fig)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment