Answers for "plt show different plots"

3

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()
Posted by: Guest on April-24-2020
0

open multiple plots python

f = plt.figure(1)
plt.hist........
............
f.show()

g = plt.figure(2)
plt.hist(........
................
g.show()

raw_input()
Posted by: Guest on December-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language