We will run a 1-way ANOVA on the total (summary) score of social desireability items with whether the participant was encouraged to take the questions either slowly or with no instructions [slow = 1, no instructions = 0] as the independent variable. We will also perform 10,000 bootstraps to account for the possibility of non-normality in the data.
This will be done using the following code:
BOOTSTRAP
/SAMPLING METHOD=SIMPLE
/VARIABLES TARGET=socdesire INPUT=slow
/CRITERIA CILEVEL=95 CITYPE=PERCENTILE NSAMPLES=10000
/MISSING USERMISSING=EXCLUDE.
UNIANOVA socdesire BY slow
/METHOD=SSTYPE(3)
/INTERCEPT=INCLUDE
/EMMEANS=TABLES(OVERALL)
/EMMEANS=TABLES(slow)
/PRINT=DESCRIPTIVE
/CRITERIA=ALPHA(.05)
/DESIGN=slow.
We hypothesize that there will be no differences between the groups.