Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
free_will_and_determinism_scale [2012/02/07 23:39] filination created |
free_will_and_determinism_scale [2013/05/12 23:31] (current) filination [The Free Will and Determinism Scale] |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Introduction ====== | + | ====== FAD scale – Free-will and Determinism Scale ====== |
+ | |||
+ | |||
+ | ===== Introduction ===== | ||
This is the FAD scale – Free-will and Determinism Scale: Version 4B ([[http://www2.psych.ubc.ca/~dpaulhus/FAD_info/|source]]). | This is the FAD scale – Free-will and Determinism Scale: Version 4B ([[http://www2.psych.ubc.ca/~dpaulhus/FAD_info/|source]]). | ||
Line 10: | Line 13: | ||
</blockquote> | </blockquote> | ||
- | ====== The Free Will and Determinism Scale ====== | + | ===== The Free Will and Determinism Scale ===== |
Using the scale below as a guide, write a number beside each statement to indicate | Using the scale below as a guide, write a number beside each statement to indicate | ||
Line 17: | Line 20: | ||
1 - Totally Disagree | 1 - Totally Disagree | ||
3 - Unsure | 3 - Unsure | ||
- | 5 - Totally Disagree | + | 5 - Totally Agree |
<blockquote> | <blockquote> | ||
Line 50: | Line 53: | ||
</blockquote> | </blockquote> | ||
- | ====== Scoring ====== | + | ===== Scoring ===== |
Reverse the scoring on items marked with an ‘R’. Then add up all 7 items for each of the four subscales. | Reverse the scoring on items marked with an ‘R’. Then add up all 7 items for each of the four subscales. | ||
- | ===== Two forms of Determinism ===== | + | ==== Two forms of Determinism ==== |
- Fate: items 1, 5, 9, 13, 17, 21, 25R | - Fate: items 1, 5, 9, 13, 17, 21, 25R | ||
- Scientific Causation: items 2, 6, 10, 14, 18, 22R, 26 | - Scientific Causation: items 2, 6, 10, 14, 18, 22R, 26 | ||
Line 60: | Line 63: | ||
- environmental: 6, 18 | - environmental: 6, 18 | ||
- | ===== Two forms of Non-Determinism ===== | + | ==== Two forms of Non-Determinism ==== |
- Randomness: items 3, 7, 11, 15, 19, 23, 27R | - Randomness: items 3, 7, 11, 15, 19, 23, 27R | ||
- Free Will: items 4, 8, 12, 16, 20R, 24R, 28 | - Free Will: items 4, 8, 12, 16, 20R, 24R, 28 | ||
+ | ===== SPSS code ===== | ||
+ | |||
+ | <code> | ||
+ | * only for the freewill part. | ||
+ | RECODE p24 p20 (5=1) (4=2) (3=3) (2=4) (1=5) INTO p24r p20r. | ||
+ | VARIABLE LABELS p24r 'p24r' /p20r 'p20r'. | ||
+ | EXECUTE. | ||
+ | |||
+ | compute freewill=mean(paulhusfwd_4,paulhusfwd_8,paulhusfwd_12,paulhusfwd_16,p24r,p20r,paulhusfwd_28). | ||
+ | exec. | ||
+ | </code> |