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