You are viewing a single comment's thread. Return to all comments →
Here is the code in Python 3:
# estimate the value of x when y = 7 y = 7 # the regression line val_x = (9 * y + 107) / 20 # print the result print(round(val_x, 1))
Seems like cookies are disabled on this browser, please enable them to open this website
Correlation and Regression Lines - A Quick Recap #4
You are viewing a single comment's thread. Return to all comments →
Here is the code in Python 3: