# | Likes | Tech tags | Title | Creator | Created date |
---|---|---|---|---|---|
1 | 0 |
Plotly
|
2022-12-18 00:54
|
Renders the following navigable 3D scatter plot:
import plotly.express as px
x = [1, 3, 4, 5, 5, 6, 9]
y = [5, 2, 3, 4, 5, 4, 6]
z = [3, 5, 5, 6, 8, 3, 1]
fig = px.scatter_3d(x=x, y=y, z=z)
fig.show()
functions | |
plotly.basedatatypes.BaseFigure.show |
plotly.com |
plotly.express.scatter_3d |
plotly.com |
Render a 3D scatter plot with some existing data points. Include a picture of the graph in the specification.