Question: Trying to write this equation as a loop in Python 3. Use the variables beta_0 and beta_1 as well as the list x_train to calculate
Trying to write this equation as a loop in Python 3. "Use the variables beta_0 and beta_1 as well as the list x_train to calculate the estimated response values for the training set. Store the results in a list named pred_y_train." I have all the variables and lists calculated, keep getting a "TypeError: can't multiply sequence by non-int of type 'list' error." Thank you!
See code below:
pred_y_train = [] for i in range(len(x_train)): pred_y_train = ((beta_0 + beta_1) * [x_train])
TypeError Traceback (most recent call last) /tmp/ipykernel_490/1275898587.py in
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
