Download presentation
Presentation is loading. Please wait.
Published byBuddy Wiggins Modified over 8 years ago
1
Four way analysis Nursing home residence Gender Age Death
2
PROC TABULATE DATA=mydata.oldpeople ; VAR age_comp; CLASS dthflag gender nursehome; TABLE nursehome* gender*age_comp*MEAN, dthflag ;
3
PROC TABULATE DATA=mydata.oldpeople ; *** Starts the tabulate procedure, names the data set to be used ;
4
VAR AGE_COMP; **** This is the list of any continuous, numeric variables; **** I only have one, age_comp ;
5
CLASS DTHFLAG gender nursehome; **** Variables you want to use as categories go in the CLASS statement ;
6
TABLE nursehome* gender*age_comp*MEAN, dthflag ; ***** This statement specifies the table. The variables before the comma are your row variables ;
7
Results!
8
Now a Brief Look at Logistic Regression
9
TASKS > REGRESSION > LOGISTIC
10
The Process:
17
Model Fit Statistics
19
Which Variables are Significant
24
THANK YOU!
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.