Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

sonido sfr200a

# Plot residual errors
residuals = pd.DataFrame(model_fit.resid)
fig, ax = plt.subplots(1,2)
residuals.plot(title="Residuals", ax=ax[0])
residuals.plot(kind='kde', title='Density', ax=ax[1])
plt.show()
Source by www.machinelearningplus.com #
 
PREVIOUS NEXT
Tagged: #sonido
ADD COMMENT
Topic
Name
1+3 =