I have a dataset of daily observations with a binomial outcome, which is dependent on several variables. I have run a probit model using the command:
. I have then used
and
which has returned pr and xb values in-sample. The out-of-sample dates follow directly on from the end of the initial sample on which I have run the Probit regression. What is the appropriate command(s) to predict pr and xb for the out-of-sample observations based on their combination of variables 1, 2 and 3?
Code:
probit outcome variable1 variable2 variable3
Code:
predict pr, pr
Code:
predict xb, xb
Comment