Suppose I estimate the following model:
where y1 is binary variable, x1 is a proportion (ranging from 0 to 1), x2 and x3 are continuous variables and x4 is a dummy variable.
First, I want to see whether variable x2 and x3 are jointly significant or not. How should I proceed? Is there any command?
Is it correct to use the F-statistic? That is, comparing the R-squared of the full model and the restricted model.
Second, I want find the estimated probability of y1 if x1 increases from 0.2 to 0.5 with x2 and x3 at their average values and x4=1. I have solved such problems for OLS by writing down the equation with coefficients and then plugging the respective values to find the predicted value of the dependent variable. Not sure about Probit models.
Code:
probit y1 x1 x2 x3 x4
First, I want to see whether variable x2 and x3 are jointly significant or not. How should I proceed? Is there any command?
Is it correct to use the F-statistic? That is, comparing the R-squared of the full model and the restricted model.
Second, I want find the estimated probability of y1 if x1 increases from 0.2 to 0.5 with x2 and x3 at their average values and x4=1. I have solved such problems for OLS by writing down the equation with coefficients and then plugging the respective values to find the predicted value of the dependent variable. Not sure about Probit models.
Comment