We will run a 1-way ANOVA on the total score of social desireability with whether the participant took the was encouraged to take the questions either fast or slow [slow = 0, fast = 1] 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=fast
/CRITERIA CILEVEL=95 CITYPE=PERCENTILE NSAMPLES=10000
/MISSING USERMISSING=EXCLUDE.
UNIANOVA socdesire BY fast
/METHOD=SSTYPE(3)
/INTERCEPT=INCLUDE
/EMMEANS=TABLES(OVERALL)
/EMMEANS=TABLES(fast)
/PRINT=DESCRIPTIVE
/CRITERIA=ALPHA(.05)
/DESIGN=fast.
We hypothesize that speeded judgments will lead to higher social desirability scores.