An article reports the following data on yield (y), mean temperature over the period between date of coming into hops and date of picking (x1), and mean percentage of sunshine during the same period (x2) for the Fuggle variety of hop:
x1: 16.7 17.4 18.4 16.8 18.9 17.1 17.3 18.2 21.3 21.2 20.7 18.5
x2: 30 42 47 47 43 41 48 44 43 50 56 60
y: 210 110 103 103 91 76 73 70 68 53 45 31
Use the following R Code to complete the regression analysis:
x1 = c(16.7, 17.4, 18.4, 16.8, 18.9, 17.1, 17.3, 18.2, 21.3, 21.2, 20 7, 18.5)
x2 = c(30, 42, 47, 47, 43, 41, 48, 44, 43, 50, 56, 60)
y = c(210, 110, 103, 103, 91, 76, 73, 70, 68, 53, 45, 31)
Required:
According to the output, what is the least squares regression equation ŷ = bo + b1x1 + b2x2: