First, we need to find the optimal Linear Regression parameters (0o, 01). To do this, we need to calculate the mean of x and y values, the slope (01), and the intercept (0o).
x = [2, 7, 9]
y = [4, 5, 10]
Mean of x: $\bar{x} = \frac{2+7+9}{3} = \frac{18}{3} =
Show moreā¦