为什么python用matplotlib画出的图比例不协调,重叠在一起?如图

2024-11-08 03:03:02
推荐回答(1个)
回答(1):

1. 在这里,你有一个工作的例子:
import random
import numpy
from matplotlib import pyplot
x = [random.gauss(3,1) for _ in range(400)]
y = [random.gauss(4,2) for _ in range(400)]
bins = numpy.linspace(-10, 10, 100)
pyplot.hist(x, bins, alpha=0.5)
pyplot.hist(y, bins, alpha=0.5)
pyplot.show()