1D Histogram import numpy as np import matplotlib.pyplot as plt bins = [0,1,2,3] h = [5,8,6] f, ax = plt.subplots() ax.step(bins, np.r_[h, ...
確定! 回上一頁