I have a data set of size 60, with the same variables for all the observations. 30 of them have values for wins (y), and 30 of them I have removed to be predicted.
In sas, when you want the model to predict a value for an unkown y (result), you put a dot in the dataline for the Y value and run the regression. The model will be based on the 30 observations that have the Y value, and then are predicted for the 30 that do not.
In r, I have made the Y values as NA for those observations I would like to predict. However, The model is instead ignoring those missing values, and not giving predicted results for those observations.
How can I have my model predict the values for the missing Y variables?