解决方法
如果你有matplotlib,那么你也必须安装numpy,因为它是一个依赖关系.因此,您可以使用
numpy.polyfit找到斜率:
import matplotlib.pyplot as plt import numpy as np length = np.random.random(10) length.sort() time = np.random.random(10) time.sort() slope,intercept = np.polyfit(np.log(length),np.log(time),1) print(slope) plt.loglog(length,'--') plt.show()