-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathquestionnaires.json
1571 lines (1571 loc) · 73.3 KB
/
questionnaires.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "Empathy",
"questions": {
"1": "I sometimes find it difficult to see things from the \"other guy's\" perspective.",
"2": "I sometimes try to understand my friends better by imagining how things look from their perspective.",
"3": "When I'm upset at someone, I usually try to \"put myself in his shoes\" for a while.",
"4": "Before criticizing somebody, I try to imagine how I would feel if I were in their place.",
"5": "I often have tender, concerned feelings for people less fortunate than me",
"6": "Sometimes I don't feel very sorry for other people when they are having problems.",
"7": "When I see someone being taken advantage of, I feel kind of protective towards them.",
"8": "Other people's misfortunes do not usually disturb me a great deal.",
"9": "When I see someone being treated unfairly, I sometimes don't feel very much pity for them.",
"10": "I am often quite touched by things I see happen."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 1 to 7 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 1 to 7 in the following statements. Please evaluate yourself based on your actual feelings and experiences in the following 10 descriptions using the scales: 1 denotes \"very inaccurately\" and 7 denotes \"very accurately\". Here are the statements, score them one by one:",
"scale": 8,
"compute_mode": "AVG",
"reverse": [1,6,8,9],
"categories": [
{
"cat_name": "Overall",
"cat_questions": [1,2,3,4,5,6,7,8,9,10],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 4.92,
"std": 0.76,
"n": 112
}
]
}
]
},
{
"name": "BFI",
"questions": {
"1": "Is talkative.",
"2": "Tends to find fault with others.",
"3": "Does a thorough job.",
"4": "Is depressed, blue.",
"5": "Is original, comes up with new ideas.",
"6": "Is reserved.",
"7": "Is helpful and unselfish with others.",
"8": "Can be somewhat careless.",
"9": "Is relaxed, handles stress well.",
"10": "Is curious about many different things.",
"11": "Is full of energy.",
"12": "Starts quarrels with others.",
"13": "Is a reliable worker.",
"14": "Can be tense.",
"15": "Is ingenious, a deep thinker.",
"16": "Generates a lot of enthusiasm.",
"17": "Has a forgiving nature.",
"18": "Tends to be disorganized.",
"19": "Worries a lot.",
"20": "Has an active imagination.",
"21": "Tends to be quiet.",
"22": "Is generally trusting.",
"23": "Tends to be lazy.",
"24": "Is emotionally stable, not easily upset.",
"25": "Is inventive.",
"26": "Has an assertive personality.",
"27": "Can be cold and aloof.",
"28": "Perseveres until the task is finished.",
"29": "Can be moody.",
"30": "Values artistic, aesthetic experiences.",
"31": "Is sometimes shy, inhibited.",
"32": "Is considerate and kind to almost everyone.",
"33": "Does things efficiently.",
"34": "Remains calm in tense situations.",
"35": "Prefers work that is routine.",
"36": "Is outgoing, sociable.",
"37": "Is sometimes rude to others.",
"38": "Makes plans and follows through with them.",
"39": "Gets nervous easily.",
"40": "Likes to reflect, play with ideas.",
"41": "Has few artistic interests.",
"42": "Likes to cooperate with others.",
"43": "Is easily distracted.",
"44": "Is sophisticated in art, music, or literature."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 1 to 5 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 1 to 5 in the following statements. Here are a number of characteristics that may or may not apply to you. Please indicate the extent to which you agree or disagree with that statement. 1 denotes 'strongly disagree', 2 denotes 'a little disagree', 3 denotes 'neither agree nor disagree', 4 denotes 'little agree', 5 denotes 'strongly agree'. Here are the statements, score them one by one:",
"scale": 6,
"compute_mode": "AVG",
"reverse": [6,21,31,2,12,27,37,8,18,23,43,9,24,34,35,41],
"categories": [
{
"cat_name": "Extraversion",
"cat_questions": [1, 6, 11, 16, 21, 26, 31, 36],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 3.25,
"std": 0.9,
"n": 6076
}
]
},
{
"cat_name": "Agreeableness",
"cat_questions": [2, 7, 12, 17, 22, 27, 32, 37, 42],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 3.64,
"std": 0.72,
"n": 6076
}
]
},
{
"cat_name": "Conscientiousness",
"cat_questions": [3, 8, 13, 18, 23, 28, 33, 38, 43],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 3.45,
"std": 0.73,
"n": 6076
}
]
},
{
"cat_name": "Neuroticism",
"cat_questions": [4, 9, 14, 19, 24, 29, 34, 39],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 3.32,
"std": 0.82,
"n": 6076
}
]
},
{
"cat_name": "Openness",
"cat_questions": [5, 10, 15, 20, 25, 30, 35, 40, 41, 44],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 3.92,
"std": 0.66,
"n": 6076
}
]
}
]
},
{
"name": "BSRI",
"questions": {
"1": "Acts as a leader.",
"2": "Aggressive.",
"3": "Ambitious.",
"4": "Analytical.",
"5": "Assertive.",
"6": "Athletic.",
"7": "Competitive.",
"8": "Defends own beliefs.",
"9": "Dominant.",
"10": "Forceful.",
"11": "Has leadership abilities.",
"12": "Independent.",
"13": "Individualistic.",
"14": "Makes decisions easily.",
"15": "Masculine.",
"16": "Self-reliant.",
"17": "Self-sufficient.",
"18": "Strong personality.",
"19": "Willing to take a stand.",
"20": "Willing to take risks.",
"21": "Affectionate.",
"22": "Cheerful.",
"23": "Childlike.",
"24": "Compassionate.",
"25": "Does not use harsh language.",
"26": "Eager to soothe hurt feelings.",
"27": "Feminine.",
"28": "Flatterable.",
"29": "Gentle.",
"30": "Gullible.",
"31": "Loves children.",
"32": "Loyal.",
"33": "Sensitive to the needs of others.",
"34": "Shy.",
"35": "Soft spoken.",
"36": "Sympathetic.",
"37": "Tender.",
"38": "Understanding.",
"39": "Warm.",
"40": "Yielding.",
"41": "Adaptable.",
"42": "Conceited.",
"43": "Conscientious.",
"44": "Conventional.",
"45": "Friendly.",
"46": "Happy.",
"47": "Helpful.",
"48": "Inefficient.",
"49": "Jealous.",
"50": "Likable.",
"51": "Moody.",
"52": "Reliable.",
"53": "Secretive.",
"54": "Sincere.",
"55": "Solemn.",
"56": "Tactful.",
"57": "Theatrical.",
"58": "Truthful.",
"59": "Unpredictable.",
"60": "Unsystematic."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 1 to 7 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 1 to 7 in the following statements. Please rate yourself on the following adjectives with number 1 to 7. If you feel that the description of the adjective fully matches your situation, score 7 points; if it does not match at all, score 1 point; if it matches somewhat but not completely, please give points between 2-6 according to the degree of conformity. Here are the statements, score them one by one:",
"scale": 8,
"compute_mode": "AVG",
"reverse": [],
"categories": [
{
"cat_name": "Masculine",
"cat_questions": [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20],
"crowd": [
{
"crowd_name": "Students (Women)",
"mean": 4.41,
"std": 0.6854195795,
"n": 58
},
{
"crowd_name": "Students (Men)",
"mean": 4.69,
"std": 0.6363961031,
"n": 50
},
{
"crowd_name": "Workers (Women)",
"mean": 4.62,
"std": 0.697423831,
"n": 76
},
{
"crowd_name": "Workers (Men)",
"mean": 4.77,
"std": 0.8660254038,
"n": 75
}
]
},
{
"cat_name": "Feminine",
"cat_questions": [21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],
"crowd": [
{
"crowd_name": "Students (Women)",
"mean": 5.33,
"std": 0.7615773106,
"n": 58
},
{
"crowd_name": "Students (Men)",
"mean": 4.97,
"std": 0.9899494937,
"n": 50
},
{
"crowd_name": "Workers (Women)",
"mean": 5.73,
"std": 0.8717797887,
"n": 76
},
{
"crowd_name": "Workers (Men)",
"mean": 5.34,
"std": 0.8660254038,
"n": 75
}
]
}
]
},
{
"name": "EPQ-R",
"questions": {
"1": "Do you have many different hobbies?",
"2": "Do you stop to think things over before doing anything?",
"3": "Does your mood often go up and down?",
"4": "Have you ever taken the praise for something you knew someone else had really done?",
"5": "Do you take much notice of what people think?.",
"6": "Are you a talkative person?",
"7": "Would being in debt worry you?",
"8": "Do you ever feel 'just miserable' for no reason?",
"9": "Do you give money to charities?",
"10": "Were you ever greedy by helping yourself to more than your share of anything?",
"11": "Are you rather lively?",
"12": "Would it upset you a lot to see a child or an animal suffer?",
"13": "Do you often worry about things you should not have done or said?",
"14": "Do you dislike people who don't know how to behave themselves?",
"15": "If you say you will do something, do you always keep your promise no matter how inconvenient it might be?",
"16": "Can you usually let yourself go and enjoy yourself at a lively party?",
"17": "Are you an irritable person?",
"18": "Should people always respect the law?",
"19": "Have you ever blamed someone for doing something you knew was really your fault?",
"20": "Do you enjoy meeting new people?",
"21": "Are good manners very important?",
"22": "Are your feelings easily hurt?",
"23": "Are all your habits good and desirable ones?",
"24": "Do you tend to keep in the background on social occasions?",
"25": "Would you take drugs which may have strange or dangerous effects?",
"26": "Do you often feel 'fed-up'?",
"27": "Have you ever taken anything (even a pin or button) that belonged to someone else?",
"28": "Do you like going out a lot?",
"29": "Do you prefer to go your own way rather than act by the rules?",
"30": "Do you enjoy hurting people you love?",
"31": "Are you often troubled about feelings of guilt?",
"32": "Do you sometimes talk about things you know nothing about?",
"33": "Do you prefer reading to meeting people?",
"34": "Do you have enemies who want to harm you?",
"35": "Would you call yourself a nervous person?",
"36": "Do you have many friends?",
"37": "Do you enjoy practical jokes that can sometimes really hurt people?",
"38": "Are you a worrier?",
"39": "As a child did you do as you were told immediately and without grumbling?",
"40": "Would you call yourself happy-go-lucky?",
"41": "Do good manners and cleanliness matter much to you?",
"42": "Have you often gone against your parents' wishes?",
"43": "Do you worry about awful things that might happen?",
"44": "Have you ever broken or lost something belonging to someone else?",
"45": "Do you usually take the initiative in making new friends?",
"46": "Would you call yourself tense or 'highly-strung'?",
"47": "Are you mostly quiet when you are with other people?",
"48": "Do you think marriage is old-fashioned and should be done away with?",
"49": "Do you sometimes boast a little?",
"50": "Are you more easy-going about right and wrong than most people?",
"51": "Can you easily get some life into a rather dull party?",
"52": "Do you worry about your health?",
"53": "Have you ever said anything bad or nasty about anyone?",
"54": "Do you enjoy co-operating with others?",
"55": "Do you like telling jokes and funny stories to your friends?",
"56": "Do most things taste the same to you?",
"57": "As a child were you ever cheeky to your parents?",
"58": "Do you like mixing with people?",
"59": "Does it worry you if you know there are mistakes in your work?",
"60": "Do you suffer from sleeplessness?",
"61": "Have people said that you sometimes act too rashly?",
"62": "Do you always wash before a meal?",
"63": "Do you nearly always have a 'ready answer' when people talk to you?",
"64": "Do you like to arrive at appointments in plenty of time?",
"65": "Have you often felt listless and tired for no reason?",
"66": "Have you ever cheated at a game?",
"67": "Do you like doing things in which you have to act quickly?",
"68": "Is (or was) your mother a good woman?",
"69": "Do you often make decisions on the spur of the moment?",
"70": "Do you often feel life is very dull?",
"71": "Have you ever taken advantage of someone?",
"72": "Do you often take on more activities than you have time for?",
"73": "Are there several people who keep trying to avoid you?",
"74": "Do you worry a lot about your looks?",
"75": "Do you think people spend too much time safeguarding their future with savings and insurance?",
"76": "Have you ever wished that you were dead?",
"77": "Would you dodge paying taxes if you were sure you could never be found out?",
"78": "Can you get a patty going?",
"79": "Do you try not to be rude to people?",
"80": "Do you worry too long after an embarrassing experience?",
"81": "Do you generally 'look before you leap'?",
"82": "Have you ever insisted on having your own way?",
"83": "Do you suffer from 'nerves'?",
"84": "Do you often feel lonely?",
"85": "Can you on the whole trust people to tell the truth?",
"86": "Do you always practice what you preach?",
"87": "Are you easily hurt when people find fault with you or the work you do?",
"88": "Is it better to follow society's rules than go your own way?",
"89": "Have you ever been late for an appointment or work?",
"90": "Do you like plenty of bustle and excitement around you?",
"91": "Would you like other people to be afraid of you?",
"92": "Are you sometimes bubbling over with energy and sometimes very sluggish?",
"93": "Do you sometimes put off until tomorrow what you ought to do today?",
"94": "Do other people think of you as being very lively?",
"95": "Do people tell you a lot of lies?",
"96": "Do you believe one has special duties to one's family?",
"97": "Are you touchy about some things?",
"98": "Are you always willing to admit it when you have made a mistake?",
"99": "Would you feel very sorry for an animal caught in a trap?",
"100": "When your temper rises, do you find it difficult to control?"
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 0 to 1 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 0 to 1 in the following statements. Please respond to each question by using the number '1' to indicate 'YES' and '0' to indicate 'NO'. There are no right or wrong answers, and no trick questions. Work quickly and do not think too long about the exact meaning of the questions. Here are the statements, score them one by one:",
"scale": 1,
"compute_mode": "SUM",
"reverse": [24,33,47,2,5,7,9,12,14,18,21,41,54,59,64,68,79,81,85,88,96,99,4,10,19,27,32,44,49,53,57,66,71,77,82,89,93],
"categories": [
{
"cat_name": "Extraversion",
"cat_questions": [1, 6, 11, 16, 20, 28, 36, 40, 45, 51, 55, 58, 61, 63, 67, 69, 72, 78, 90, 94, 24, 33, 47],
"crowd": [
{
"crowd_name": "Male",
"mean": 12.51,
"std": 6,
"n": 693
},
{
"crowd_name": "Female",
"mean": 14.14,
"std": 5.06,
"n": 878
}
]
},
{
"cat_name": "Pschoticism",
"cat_questions": [25, 29, 30, 34, 37, 42, 48, 50, 56, 73, 75, 91, 95, 2, 5, 7, 9, 12, 14, 18, 21, 41, 54, 59, 64, 68, 79, 81, 85, 88, 96, 99],
"crowd": [
{
"crowd_name": "Male",
"mean": 7.19,
"std": 4.6,
"n": 693
},
{
"crowd_name": "Female",
"mean": 5.73,
"std": 3.85,
"n": 878
}
]
},
{
"cat_name": "Neuroticism",
"cat_questions": [3, 8, 13, 17, 22, 26, 31, 35, 38, 43, 46, 52, 60, 65, 70, 74, 76, 80, 83, 84, 87, 92, 97, 100],
"crowd": [
{
"crowd_name": "Male",
"mean": 10.54,
"std": 5.81,
"n": 693
},
{
"crowd_name": "Female",
"mean": 12.47,
"std": 5.06,
"n": 878
}
]
},
{
"cat_name": "Lying",
"cat_questions": [15, 23, 39, 62, 86, 98, 4, 10, 19, 27, 32, 44, 49, 53, 57, 66, 71, 77, 82, 89, 93],
"crowd": [
{
"crowd_name": "Male",
"mean": 7.1,
"std": 4.28,
"n": 693
},
{
"crowd_name": "Female",
"mean": 6.88,
"std": 3.97,
"n": 878
}
]
}
]
},
{
"name": "LMS",
"questions": {
"1": "I want to be rich.",
"2": "It would be nice to be rich.",
"3": "Have a lot of money (being rich) is good.",
"4": "I am motivated to work hard for money.",
"5": "Money reinforces me to work harder.",
"6": "I am highly motivated by money.",
"7": "Money is good.",
"8": "Money is important.",
"9": "Money is valuable."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 1 to 5 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 1 to 5 in the following statements. Please provide a rating based on the following descriptions using the scale: 1 denotes 'strongly disagree', 2 denotes 'disagree', 3 denotes 'neutral', 4 denotes 'agree', 5 denotes 'strongly agree'. Here are the statements, score them one by one:",
"scale": 6,
"compute_mode": "AVG",
"reverse": [],
"categories": [
{
"cat_name": "Factor rich",
"cat_questions": [1,2,3],
"crowd": [
{
"crowd_name": "Whole Sample",
"mean": 3.8,
"std": 0.83,
"n": 5973
},
{
"crowd_name": "USA",
"mean": 3.85,
"std": 0.79,
"n": 274
}
]
},
{
"cat_name": "Factor motivator",
"cat_questions": [4,5,6],
"crowd": [
{
"crowd_name": "Whole Sample",
"mean": 3.27,
"std": 0.94,
"n": 5973
},
{
"crowd_name": "USA",
"mean": 3.59,
"std": 0.98,
"n": 274
}
]
},
{
"cat_name": "Factor important",
"cat_questions": [7,8,9],
"crowd": [
{
"crowd_name": "Whole Sample",
"mean": 3.95,
"std": 0.72,
"n": 5973
},
{
"crowd_name": "USA",
"mean": 4.1,
"std": 0.65,
"n": 274
}
]
}
]
},
{
"name": "DTDD",
"questions": {
"1": "I tend to manipulate others to get my way.",
"2": "I have used deceit or lied to get my way.",
"3": "I have use flattery to get my way.",
"4": "I tend to exploit others towards my own end.",
"5": "I tend to lack remorse.",
"6": "I tend to be unconcerned with the morality of my actions.",
"7": "I tend to be callous or insensitive.",
"8": "I tend to be cynical.",
"9": "I tend to want others to admire me.",
"10": "I tend to want others to pay attention to me.",
"11": "I tend to seek prestige or status.",
"12": "I tend to expect special favors from others."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 1 to 9 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 1 to 9 in the following statements. Please provide a rating based on the following 12 descriptions using a scale from 1 (disagree strongly) to 9 (agree strongly). Here are the statements, score them one by one:",
"scale": 10,
"compute_mode": "AVG",
"reverse": [],
"categories": [
{
"cat_name": "Machiavellianism",
"cat_questions": [1,2,3,4],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 3.78,
"std": 1.63,
"n": 577
}
]
},
{
"cat_name": "Psychopathy",
"cat_questions": [5,6,7,8],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 2.47,
"std": 1.44,
"n": 577
}
]
},
{
"cat_name": "Neuroticism",
"cat_questions": [9,10,11,12],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 4.88,
"std": 1.8,
"n": 577
}
]
}
]
},
{
"name": "ECR-R",
"questions": {
"1": "I'm afraid that I will lose my partner's love.",
"2": "I often worry that my partner will not want to stay with me.",
"3": "I often worry that my partner doesn't really love me.",
"4": "I worry that romantic partners won't care about me as much as I care about them.",
"5": "I often wish that my panaer's feelings for me were as strong as my feelings for him or her.",
"6": "I worry a lot about my relationships.",
"7": "When my partner is out of sight, I worry that he or she might become interested in someone else.",
"8": "When I show my feelings for romantic partners, I'm afraid they will not feel the 'same about me.",
"9": "I rarely worry about my partner leaving me.",
"10": "My romantic partner makes me doubt myself.",
"11": "I do not often worry about being abandoned.",
"12": "I find that my partner(s) don't want to get as close as I would like.",
"13": "Sometimes romantic partners change their feelings about me for no apparent reason.",
"14": "My desire to be very close sometimes scares people away.",
"15": "I'm afraid that once a romantic partner gets to know me, he or she won't like who I really am.",
"16": "It makes me mad that I don't get the affection and support I need from my partner.",
"17": "I worry that I won't measure up to other people.",
"18": "My partner only sEEMs to notice me when I'm angry.",
"19": "I prefer not to show a partner how I feel deep down.",
"20": "I feel comfortable sharing my private thoughts and feelings with my partner.",
"21": "I find it difficult to allow myself to depend on romantic partners.",
"22": "I am very comfortable being close to romantic partners.",
"23": "I don't feel comfortable opening up to romantic partners.",
"24": "I prefer not to be toa close to romantic partners.",
"25": "I get uncomfortable when a romantic partner wants to be very close.",
"26": "I find it relatively easy to get close to my partner.",
"27": "It's not difficult for me to get close to my parmer.",
"28": "I usually discuss my problems and concerns with my partner.",
"29": "It helps to turn to my romantic partner in times of need.",
"30": "I tell my partner just about everything.",
"31": "I talk things over with my partner.",
"32": "I am nervous when partners get too close to me.",
"33": "I feel comfortable depending on romantic partners.",
"34": "I find it easy to depend on romantic partners.",
"35": "It's easy for me to be affectionate with my partner.",
"36": "My partner really understands me and my needs."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 1 to 7 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 1 to 7 in the following statements. Please evaluate the following 36 descriptions based on your actual feelings and experiences. The criteria for evaluation and judgment are as follows: 1 (strongly disagree), 2 (disagree), 3 (slightly disagree), 4 (neutral), 5 (slightly agree), 6 (agree), 7 (strongly agree). Here are the statements, score them one by one:",
"scale": 8,
"compute_mode": "AVG",
"reverse": [9,11,20,22,26,27,28,29,30,31,33,34,35,36],
"categories": [
{
"cat_name": "Attachment-related Anxiety",
"cat_questions": [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 2.85,
"std": 1.12,
"n": 388
}
]
},
{
"cat_name": "Attachment-related Avoidance",
"cat_questions": [19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 2.34,
"std": 0.98,
"n": 388
}
]
}
]
},
{
"name": "GSE",
"questions": {
"1": "I can always manage to solve difficult problems if I try hard enough.",
"2": "If someone opposes me, I can find the means and ways to get what I want.",
"3": "I am certain that I can accomplish my goals.",
"4": "I am confident that I could deal efficiently with unexpected events.",
"5": "Thanks to my resourcefulness, I can handle unforeseen situations.",
"6": "I can solve most problems if I invest the necessary effort.",
"7": "I can remain calm when facing difficulties because I can rely on my coping abilities.",
"8": "When I am confronted with a problem, I can find several solutions.",
"9": "If I am in trouble, I can think of a good solution.",
"10": "I can handle whatever comes my way."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 1 to 4 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 1 to 4 in the following statements. Please provide a rating based on the following 10 descriptions according to your actual feelings and experiences. The rating and judgment criteria are as follows: 1 denotes Disagree, 2 denotes Somewhat disagree, 3 denotes Somewhat agree, 4 denotes Agree. Here are the statements, score them one by one:",
"scale": 5,
"compute_mode": "SUM",
"reverse": [],
"categories": [
{
"cat_name": "Overall",
"cat_questions": [1,2,3,4,5,6,7,8,9,10],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 29.55,
"std": 5.32,
"n": 19120
}
]
}
]
},
{
"name": "ICB",
"questions": {
"1": "The ethnic culture a person is from (e.g., Chinese, American, Japanese), determined the kind of person they would be (e.g. outgoing and sociable or quiet and introverted); not much can be done to change the person.",
"2": "Not much that can be done to change a person's ethnocultural characteristics (e.g., being violent, being assertive, being submissive).",
"3": "Although people can act differently, the core ethnocultural characteristics they hold cannot be changed much.",
"4": "Ethnocultural characteristics are something very basic about a person, they cannot be changed.",
"5": "Everyone, no matter who they are, can significantly change their ethnocultural characteristics (e.g., being violent, being assertive, and being submissive).",
"6": "People from different ethnic cultures (e.g., Chinese, Japanese, American) can substantially change the kind of person they are.",
"7": "No matter what a person's ethnocultural characteristic is like, it can always be changed.",
"8": "People can change even the most basic qualities that they have acquired from their own ethnic culture."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 1 to 6 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 1 to 6 in the following statements. Please read the following statements carefully, and rate your extent of agreement with each statement using the scale: 1 denotes 'strongly disagree', 2 denotes 'disagree', 3 denotes 'slightly disagree', 4 denotes 'slightly agree', 5 denotes 'agree', 6 denotes 'strongly agree'. Here are the statements, score them one by one:",
"scale": 7,
"compute_mode": "AVG",
"reverse": [5,6,7,8],
"categories": [
{
"cat_name": "Overall",
"cat_questions": [1,2,3,4,5,6,7,8],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 3.66,
"std": 0.76,
"n": 254
}
]
}
]
},
{
"name": "LOT-R",
"questions": {
"1": "In uncertain times, I usually expect the best.",
"2": "It's easy for me to relax.",
"3": "If something can go wrong for me, it will.",
"4": "I'm always optimistic about my future.",
"5": "I enjoy my friends a lot.",
"6": "It's important for me to keep busy.",
"7": "I hardly ever expect things to go my way.",
"8": "I don't get upset too easily.",
"9": "I rarely count on good things happening to me.",
"10": "Overall, I expect more good things to happen to me than bad."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 0 to 4 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 0 to 4 in the following statements. 0 denotes 'strongly disagree', 1 denotes 'disagree', 2 denotes 'neutral', 3 denotes 'agree', 4 denotes 'strongly agree'. Here are the statements, score them one by one:",
"scale": 4,
"compute_mode": "SUM",
"reverse": [3,7,9],
"categories": [
{
"cat_name": "Overall",
"cat_questions": [1,3,4,7,9,10],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 14.7,
"std": 4,
"n": 1288
}
]
}
]
},
{
"name": "EIS",
"questions": {
"1": "I know when to speak about my personal problems to others.",
"2": "When I am faced with obstacles, I remember times I faced similar obstacles and overcame them.",
"3": "I expect that I will do well on most things I try.",
"4": "Other people find it easy to confide in me.",
"5": "I find it hard to understand the non-verbal messages of other people.",
"6": "Some of the major events of my life have led me to re-evaluate what is important and not important.",
"7": "When my mood changes, I see new possibilities.",
"8": "Emotions are one of the things that make my life worth living.",
"9": "I am aware of my emotions as I experience them.",
"10": "I expect good things to happen.",
"11": "I like to share my emotions with others.",
"12": "When I experience a positive emotion, I know how to make it last.",
"13": "I arrange events others enjoy.",
"14": "I seek out activities that make me happy.",
"15": "I am aware of the non-verbal messages I send to others.",
"16": "I present myself in a way that makes a good impression on others.",
"17": "When I am in a positive mood, solving problems is easy for me.",
"18": "By looking at their facial expressions, I recognize the emotions people are experiencing.",
"19": "I know why my emotions change.",
"20": "When I am in a positive mood, I am able to come up with new ideas.",
"21": "I have control over my emotions.",
"22": "I easily recognize my emotions as I experience them.",
"23": "I motivate myself by imagining a good outcome to tasks I take on.",
"24": "I compliment others when they have done something well.",
"25": "I am aware of the non-verbal messages other people send.",
"26": "When another person tells me about an important event in his or her life, I almost feel as though I have experienced this event myself.",
"27": "When I feel a change in emotions, I tend to come up with new ideas.",
"28": "When I am faced with a challenge, I give up because I believe I will fail.",
"29": "I know what other people are feeling just by looking at them.",
"30": "I help other people feel better when they are down.",
"31": "I use good moods to help myself keep trying in the face of obstacles.",
"32": "I can tell how people are feeling by listening to the tone of their voice.",
"33": "It is difficult for me to understand why people feel the way they do."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 1 to 5 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 1 to 5 in the following statements. Please compare your actual situation with the situations described in the questions below and choose the answer that best corresponds to your actual situation based on your first impression. There is no right or wrong answer, please answer truthfully based on your first impression. Please use the following scale: 1 = 'Does not match at all', 2 = 'Does not match very well', 3 = 'Not sure', 4 = 'Matches quite well', 5 = 'Matches perfectly'. Here are the statements, score them one by one:",
"scale": 6,
"compute_mode": "SUM",
"reverse": [5, 28, 33],
"categories": [
{
"cat_name": "Overall",
"cat_questions": [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33],
"crowd": [
{
"crowd_name": "Men",
"mean": 124.78,
"std": 16.52,
"n": 111
},
{
"crowd_name": "Women",
"mean": 130.94,
"std": 15.09,
"n": 218
}
]
}
]
},
{
"name": "WLEIS",
"questions": {
"1": "I have a good sense of why I feel certain feelings most of the time.",
"2": "I have a good understanding of my own emotions.",
"3": "I really understand what I feel.",
"4": "I always know whether I am happy or not.",
"5": "I always know my friends' emotions from their behaviour.",
"6": "I am a good observer of others' emotions.",
"7": "I am sensitive to the feelings and emotions of others.",
"8": "I have a good understanding of the emotions of people around me.",
"9": "I always set goals for myself and then try my best to achieve them.",
"10": "I always tell myself I am a competent person.",
"11": "I am a self-motivating person.",
"12": "I would always encourage myself to try my best.",
"13": "I am able to control my temper so that I can handle difficulties rationally.",
"14": "I am quite capable of controlling my own emotions.",
"15": "I can always calm down quickly when I am very angry.",
"16": "I have good control of my emotions."
},
"inner_setting": "You are a helpful assistant who can only reply numbers from 1 to 7 in every statement. Format: \"statement index: score\".",
"prompt": "You can only reply numbers from 1 to 7 in the following statements. A list of statements are provided below, and to complete this questionnaire, rate the extent to which you agree or disagree to each of the statements. 1: 'Strongly Disagree', 2: 'Disagree', 3: 'Slightly Disagree', 4: 'Neither Agree nor Disagree', 5: 'Slightly Agree', 6: 'Agree', 7: 'Strongly Agree'. Here are the statements, score them one by one:",
"scale": 8,
"compute_mode": "AVG",
"reverse": [],
"categories": [
{
"cat_name": "SEA",
"cat_questions": [1,2,3,4],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 4.01,
"std": 1.05,
"n": 418
}
]
},
{
"cat_name": "OEA",
"cat_questions": [5,6,7,8],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 3.78,
"std": 1.12,
"n": 418
}
]
},
{
"cat_name": "UOE",
"cat_questions": [9,10,11,12],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 4.09,
"std": 0.92,
"n": 418
}
]
},
{
"cat_name": "ROE",
"cat_questions": [13,14,15,16],
"crowd": [
{
"crowd_name": "Crowd",
"mean": 4.15,
"std": 0.96,
"n": 418
}
]
}
]
},
{
"name": "CABIN",
"questions": {
"1": "Repair car engines.",
"2": "Perform aircraft maintenance.",
"3": "Maintain wind turbine generators.",
"4": "Install radio communication systems.",
"5": "Build wood wall shelves.",
"6": "Build kitchen cabinets.",
"7": "Sand and refinish a piece of furniture.",
"8": "Build a fence.",
"9": "Drive a bus.",
"10": "Drive a delivery truck.",
"11": "Operate a train.",
"12": "Operate a crane to move freight and cargo.",
"13": "Load and unload aircraft baggage.",
"14": "Load and unload cargo.",
"15": "Move building materials on construction sites.",
"16": "Pack and move products in a warehouse.",
"17": "Arrest suspects of criminal acts.",
"18": "Conduct surveillance of suspects.",
"19": "Inspect people and vehicles for illegal goods.",
"20": "Investigate reports of organized crime.",
"21": "Farm and harvest crops.",
"22": "Inspect orchards to detect diSEMses or pests.",
"23": "Learn about soil and climate requirements of various plants.",
"24": "Apply principles of soil science to conserve land.",
"25": "Water and fertilize garden plants.",
"26": "Survey forest areas and access roads.",
"27": "Plant trees in a nature preserve.",
"28": "Work to restore a wildlife habitat.",
"29": "Treat and care for injured animals.",
"30": "Feed and bathe animals in a zoo.",
"31": "Exercise animals daily to keep them healthy.",
"32": "Find stray animals and take them to a shelter.",
"33": "Play a team or individual sport.",
"34": "Participate in athletic events.",
"35": "Train for a competitive sport.",
"36": "Coach practice sessions for a sports team.",
"37": "Design a structure that can withstand heavy wind.",
"38": "Develop lighter and stronger materials for new products.",
"39": "Redesign a production line to improve its efficiency.",
"40": "Improve the human-machine interface of an operation system.",
"41": "Study the formation and evolution of galaxies.",
"42": "Analyze a mineral sample found on Mars.",
"43": "Investigate the molecular structure of an unknown substance.",
"44": "Study the causes for earthquakes and tsunamis.",
"45": "Map human gene structure.",
"46": "Study the physiological structure of animals.",
"47": "Investigate the genetic sequence of organisms.",
"48": "ReSEMrch newly discovered bacteria with laboratory experiments.",
"49": "Examine how viruses infect the human body.",
"50": "Investigate the cause of a chronic health problem.",
"51": "ReSEMrch the side effects of a medicine.",
"52": "Investigate prevention methods for diSEMses.",
"53": "Study cultural differences between groups.",
"54": "Investigate how poverty influences educational attainment.",
"55": "Study the effects of public policy on violence reduction.",
"56": "ReSEMrch why people have stereotypes and prejudice.",
"57": "Study the history of an ancient society.",
"58": "Study various branches of philosophy.",
"59": "Compare the modern history of different countries.",
"60": "Document the traditions of a remote community.",
"61": "Solve mathematical problems.",
"62": "Learn about a new theory in geometry.",
"63": "Use mathematical equations to solve practical problems.",
"64": "Develop a statistical model to explain a phenomenon.",
"65": "Test and compare different software.",
"66": "Create a new computer database.",
"67": "Monitor the daily performance of computer systems.",
"68": "Diagnose and resolve computer hardware or software problems.",
"69": "Sketch a picture.",
"70": "Paint a landscape.",
"71": "Draw illustrations for a book.",
"72": "Create a unique piece of artwork.",
"73": "Create a piece of artistic and functional furniture.",
"74": "Create the set for a movie or stage play.",
"75": "Design the layout and lighting of an exhibition.",
"76": "Design unique packaging for a product.",
"77": "Perform on stage for a group of people.",
"78": "Act in a play.",
"79": "Act out an emotional movie scene.",
"80": "Perform comedy to entertain an audience.",
"81": "Play a musical instrument.",
"82": "Compose an original piece of music.",
"83": "Play in a band.",
"84": "Arrange background music for a show.",