How would you estimate the regression model, {testscri = β0 + β1 stri + β2 incomei + ui}
in Stata if testscr, str, and income are the variable names in the dataset, corresponding to the variables in the regression modeld? no additional information is needed to answer this.
1) type the command "reg testscr str, r" to get the estimate of β1 and then type the command "reg testscr income, r" to get the estimate of β2 .
2) type the command "reg str testscr income, r"
3) type the command "reg str income testscr, r"
4) type the command "reg testscr str income, r"
Since data is not given, above is code how to write in Stata .
first import data in stata and then write reg testscr str income to run a regression model and get the result which shows estimates of B1 and B2 and r-sqaure , Adjusted r sqaure and p value and t test result also provided
Get Answers For Free
Most questions answered within 1 hours.