Hi,
My IV's are:
Spousal Status (0=spousal, 1=non-spousal)
Race (0=African American/Black, 1=White)
Gender (1=female, 0=male)
The DV is total % unmet needs
Conducted proc means to get the mean and SD of the total % unmet needs for the following:
| Female |
| Male |
| African American/Black |
| White |
| Spousal |
| Non-Spousal |
| Spousal Male |
| Non-Spousal Male |
| Spousal Female |
| Non-Spousal Female |
| Spousal African American/Black |
| Non-Spousal African American/Black |
| Spousal White |
| Non-Spousal White |
| Spousal male White |
| Non-spousal male White |
| Spousal male AA/B |
| Non-Spousal male AA/B |
| Spousal female White |
| Non-spousal female White |
| Spousal female AA/B |
| Non-spousal female AA/B |
This is an example of one of the proc means:
Title "Non-Spousal Female Black";
proc means data = final.data N MEAN STDDEV;
var per_jhdcna_unmet_cg;
where spousalstatus = 1 and cg_sex = 1 and race_dich_cp = 0;
Run;
Now I want to find the p-value for the following groupings:
Gender (male/female)
Race (AA/B, W)
Spousal Status (spousal/non-spousal)
Spousal Status by Gender
Spousal Status by Race
Spousal Status by Gender by Race
Is there a test I can do to capture the M, SD, and a p-value?
I'm a beginner, so I don't mind doing more steps if it is less complicated.