October 2017
Beginner to intermediate
270 pages
7h
English
First, let's define the function that will abstractedly represent the modeled data, in the form of a linear function, with the form y=beta*x+alpha:
def predict(alpha, beta, x_i):
return beta * x_i + alpha
Read now
Unlock full access