import matplotlib.pyplot as plt import numpy as np x=np.linspace(1,10,20) dy=0.6 y=np.sin(x)*3 plt.errorbar(x,y,yerr=dy,fmt='o',ecolor='r' ...
確定! 回上一頁