4
I need to create graphs of histograms in python with lists resulting from transformations. My doubt is that whenever I run the program, the next image only appears after I close the previous one.
transformacaoEscala(U,V,n,a,b)
plt.figure(figsize=(10,6), dpi=80)
histogram(V,12)
plt.show()
somaVetores(U1,U2,U,n)
plt.figure(figsize=(10,6), dpi=80)
histogram(U,10)
plt.show()
As a tool to create images that appear separately?
Your doubt is how to put the histograms in a single figure (image)?
– Gomiero