Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

show multiple plots python

#One way to plot two figure at once
f = plt.figure(1)
plt.plot([1,2],[2,3])
f.show()

g = plt.figure(2)
plt.plot([2,7,3],[5,1,9])
g.show()
 
PREVIOUS NEXT
Tagged: #show #multiple #plots #python
ADD COMMENT
Topic
Name
9+2 =