Skip to content
Snippets Groups Projects
Commit 6dec0081 authored by Nicolas Barthes's avatar Nicolas Barthes
Browse files

Merge remote-tracking branch 'origin/master'

parents 7966c567 5a56913d
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