Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

graph 3d python

fig = plt.figure(figsize=(4,4))

ax = fig.add_subplot(111, projection='3d')

ax.scatter(2,3,4) # plot the point (2,3,4) on the figure

plt.show()
Source by likegeeks.com #
 
PREVIOUS NEXT
Tagged: #graph #python
ADD COMMENT
Topic
Name
4+3 =