I have dependent variable Y which has both negative and positive values. I want to test the impact of some independent variables (Xs) on the magnitude of Y. Hence, I chose the Tobit model. I took the absolute value of Y (abs_Y), which is my new dependent variable for my Tobit regression. I wrote the following code:
proc qlim data= YYYZZZ;
model abs_Y= X1-X34; nloptions maxiter= 500;
endogenous abs_Y ~ censored (lb= 0);
run;
The output is what dumbfounded me.
I need your advice as to what may have gone wrong and how to get rid of this. SAS also generated graphs for predicted abs_Y by regressors. I am also not sure how to interpret the graphs given I have the above estimates. Let me share the graphs here.
Much thanks for all your insights.
Your output doesn't match your code. Why is the variable in the output named ABS_JUMP but your code shows ABS_Y?
@d6k5d3 wrote:
I have dependent variable Y which has both negative and positive values. I want to test the impact of some independent variables (Xs) on the magnitude of Y. Hence, I chose the Tobit model. I took the absolute value of Y (abs_Y), which is my new dependent variable for my Tobit regression. I wrote the following code:
proc qlim data= YYYZZZ; model abs_Y= X1-X34; nloptions maxiter= 500; endogenous abs_Y ~ censored (lb= 0); run;
The output is what dumbfounded me.
I need your advice as to what may have gone wrong and how to get rid of this. SAS also generated graphs for predicted abs_Y by regressors. I am also not sure how to interpret the graphs given I have the above estimates. Let me share the graphs here.
Much thanks for all your insights.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.