participants.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "participant_id": {
  3. "Description": "Unique participant identifier."
  4. },
  5. "age": {
  6. "Description": "The age of the participant.",
  7. "Units": "years"
  8. },
  9. "sex": {
  10. "Description": "The biological sex of the participant as judged by the experimenter.",
  11. "Levels": {
  12. "m": "male",
  13. "f": "female"
  14. }
  15. },
  16. "handedness": {
  17. "Description": "The handedness of the participant as reported by the participant",
  18. "Levels": {
  19. "l": "left",
  20. "r": "right"
  21. }
  22. },
  23. "seed": {
  24. "Description": "The random seed used to initialize the experiment. Participants that share a seed, saw the same underlying distributions per trial."
  25. },
  26. "yoked_to": {
  27. "Description": "The participant_id to which the participant was yoked in the yoked sampling condition. Some participants were yoked to themselves (i.e., they saw a replay of their own active sampling condition)."
  28. },
  29. "start_condition": {
  30. "Description": "The experimental condition with which the participant started the overall experiment. If the experiment was started with the active sampling condition, the yoked sampling condition was done afterwards and vice versa. After the two sampling conditions, the description task and the berlin numeracy task followed (not counterbalanced).",
  31. "Levels": {
  32. "active": "active sampling condition",
  33. "yoked": "yoked sampling condition"
  34. }
  35. },
  36. "stopping": {
  37. "Description": "The between factor of the experiment. Some participants always had to draw 12 samples ('fixed'), others could draw between 1 and 19 samples ('variable').",
  38. "Levels": {
  39. "fixed": "fixed stopping after 12 samples",
  40. "variable": "variable stopping between 1 and 19 samples"
  41. }
  42. }
  43. }