Aggialavura - Python Linear Regression Model
Aggialavura - Python Linear Regression Model
PRELIMINARY OPERATIONS scatter: this graph show the difference between actual values and
the values predicted by the model we trained. It should resemble as
df = pd.read_csv('data.csv') read data
much as possible a diagonal line .
df.head() check head df
distplot: this graph shows the distributions of the residual errors, that
df.info() check info df is, the difference between the actual values minus the predicted
df.describe() check stats df values; it should result in an as much as possible normal distribution.
df.columns check col names If not, maybe change model!
cheatography.com/aggialavura/
www.dariopittera.com