import numpy as np import matplotlib.pyplot as plt x = 50 * np.random.random((30, 1)) y = 0.5 * x + 1.0 + np.random.normal(size=x.shape) ax = plt.axes() ...
確定! 回上一頁