Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Spatial Databases A Tour

Authors: Shashi Shekhar, Sanjay Chawla

1st Edition

0130174807, 978-0130174802

More Books

Students also viewed these Databases questions

Question

Azure Analytics is a suite made up of which three tools?

Answered: 1 week ago