suppose I run the following regression:
Am I right in that the RMSE reported in the second regression is the RMSE of the true value (y) and what my model would have predicted (pall)?
Code:
reghdfe y x1 x2 x3 if train == 1, abs(fe1 fe2) cluster(fe1) predict pall reg y pall if test == 1, nocons
Comment