cp9_MathematicalTools_np.linalg.lstsq VS (statsmodels)sm.OLS
importnumpyasnpimportmatplotlib.pyplotasplt%matplotlibinlinedeff(x):returnnp.sin(x)+0.5*xxArr=np.linspace(-2*np.pi,2*np.pi,50)plt.plot(xArr,f(xArr),'b')plt.grid(True)plt.xlabel('x')plt.ylabel('f(x)')#