@u49589061 wrote:
Second, I am currently running into problems with running the last two proc logistics statements. After I run the first proc logistic statement, it states that "All observations have the same response. No statistics are computed."
Important debugging technique when you get this ERROR. Actually look at your data set with your own eyes and see what is happening. In this case, you will find that one of your variables has the same value for every observation. Then you have to fix this.
Also:
For Logistic Regression, do NOT create your own dummy variables. Just leave it as a character variable, and put the variable PREVIOUS in a CLASS statement. You gain nothing by converting it to numeric or creating dummy variables, but you do have to write extra code. Make your life easier, don't create your own dummy variables for Logistic Regression.
... View more