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 1 pred_y_train = [] 2 for i in range(len(x_train)): ----> 3 pred_y_train = ((beta_0 + beta_1) * [x_train]) TypeError: can't multiply sequence by non-int of type 'float'

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!