More information about the data and the documented cleaning process can be found here https://synth-science.github.io/synth-rep/

knitr::opts_chunk$set(
  warning = TRUE, # show warnings during codebook generation
  message = TRUE, # show messages during codebook generation
  error = TRUE, # do not interrupt codebook generation in case of errors,
                # usually better for debugging
  echo = TRUE  # show R code
)
ggplot2::theme_set(ggplot2::theme_bw())
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr     1.1.4     ✔ readr     2.1.5
## ✔ forcats   1.0.0     ✔ stringr   1.5.1
## ✔ ggplot2   3.4.4     ✔ tibble    3.2.1
## ✔ lubridate 1.9.3     ✔ tidyr     1.3.1
## ✔ purrr     1.0.2     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(codebook)
## Warning: package 'codebook' was built under R version 4.3.3
library(haven)
library(labelled)
## 
## Attaching package: 'labelled'
## 
## The following object is masked from 'package:codebook':
## 
##     to_factor
rr_human_data_with_reversed_items = rio::import("data/processed/sosci_labelled.rds")
reversed_items <- str_sub(names(rr_human_data_with_reversed_items)[str_detect(names(rr_human_data_with_reversed_items), "_R$")], 1, -3)
rr_human_data_with_inclusion_criteria = rio::import("data/processed/sosci_labelled_with_exclusion_criteria.rds")
# setdiff(names(rr_human_data_with_inclusion_criteria), names(rr_human_data_with_reversed_items)) %>% dput()
rr_human_data_with_inclusion_criteria <- rr_human_data_with_inclusion_criteria %>% select(one_of(c("CASE","even_odd", "psychant", 
"psychsyn", "mahal_dist", 
"longstring", "time_per_item", "not_serious", "included")))
rr_human_data_with_inclusion_criteria <- rr_human_data_with_inclusion_criteria %>% 
  full_join(rr_human_data_with_reversed_items)
## Joining with `by = join_by(CASE)`
rr_human_data_included <- rr_human_data_with_inclusion_criteria %>% filter(included) %>% 
  select(-starts_with("BH"), -starts_with("WS"), -starts_with("BFI"),
         -QUESTNNR, -MODE, -one_of(reversed_items), -IFI_01, -ACH_01, -ACH_02, 
         -IFI_02, -FRI_02, -starts_with("MS"), -matches("^OC[0-9]"), -starts_with("PR"),
         -starts_with("RG"), -starts_with("ZY"))

rr_human_data_included <- rr_human_data_included %>% mutate(
  Age = as.numeric(Age)) %>% 
  rename(sex = gender,
         gender = SD13,
         Age_prolific = Age,
         age = SD02_01,
         race = SD03,
         hispanic = SD04,
         education = SD08,
         occupation = SD10) %>% 
  mutate(
    non_hispanic_white = if_else(race == "White" & hispanic == "No, not of Hispanic, Latino, or Spanish origin", 1, 0)
  ) %>% 
  select(sex, gender, age, race, hispanic, education, occupation, starts_with("SD"), everything())

table(rr_human_data_included$sex)
## 
##            Female              Male [NA] Not answered 
##               181               155                 0
round(prop.table(table(rr_human_data_included$sex)),2)
## 
##            Female              Male [NA] Not answered 
##              0.54              0.46              0.00
table(rr_human_data_included$gender)
## 
##           Same as sex Other, please specify     [NA] Not answered 
##                   331                     5                     0
options(digits = 2)
table(rr_human_data_included$occupation == "N/A: Unemployed")
## 
## FALSE  TRUE 
##   246    90
prop.table(table(rr_human_data_included$occupation == "N/A: Unemployed"))
## 
## FALSE  TRUE 
##  0.73  0.27
rr_human_data_included %>% summarise(
  nh_white = sum(non_hispanic_white),
  nh_white_pc = sum(non_hispanic_white)/n(),
  hispanic = sum(hispanic != "No, not of Hispanic, Latino, or Spanish origin"),
  hispanic_pc = sum(hispanic)/n(),
  black = sum(race == "Black/African American"),
  black_pc = sum(black)/n(),
)
## # A tibble: 1 × 6
##   nh_white nh_white_pc hispanic hispanic_pc black black_pc
##      <dbl>       <dbl>    <int>       <dbl> <int>    <dbl>
## 1      212       0.631       42       0.125    38    0.113
table(rr_human_data_included$education)
## 
##   1 year of college  2 years of college  3 years of college  4 years of college 
##                  20                  48                  27                 114 
## 5+ years of college            Grade 10            Grade 12 Grade 5, 6, 7, or 8 
##                  84                   1                  39                   1 
##             Grade 9 N/A or no schooling 
##                   1                   1
round(prop.table(table(rr_human_data_included$education))*100)
## 
##   1 year of college  2 years of college  3 years of college  4 years of college 
##                   6                  14                   8                  34 
## 5+ years of college            Grade 10            Grade 12 Grade 5, 6, 7, or 8 
##                  25                   0                  12                   0 
##             Grade 9 N/A or no schooling 
##                   0                   0
table(rr_human_data_included$SD07)
## 
##              Married              Widowed             Divorced 
##                  142                    8                   50 
##            Separated Never married/single    [NA] Not answered 
##                    9                  127                    0
table(rr_human_data_included$Nationality != "United States")
## 
## FALSE  TRUE 
##   298    36
rr_human_data_included %>% group_by(education) %>% 
  summarise(n())
## # A tibble: 10 × 2
##    education           `n()`
##    <chr>               <int>
##  1 1 year of college      20
##  2 2 years of college     48
##  3 3 years of college     27
##  4 4 years of college    114
##  5 5+ years of college    84
##  6 Grade 10                1
##  7 Grade 12               39
##  8 Grade 5, 6, 7, or 8     1
##  9 Grade 9                 1
## 10 N/A or no schooling     1
# table(str_replace_all(str_to_lower(str_trim(rr_human_data_included$SD13_02)), "-", ""))
rr_human_data_share <- rr_human_data_included %>% select(
  CASE, 
  # Demographic variables
  age, Age_prolific, sex, gender,
  education, occupation, Nationality,
  race, hispanic, non_hispanic_white,
  
  # Metadata/Quality Control variables
  even_odd, psychant, psychsyn, mahal_dist,
  longstring, time_per_item, included, not_serious,
  Language, total_approvals = `Total approvals`,
  
  # Main questionnaire items (using starts_with)
  starts_with(c("AAID", "PANAS", "PAQ", "PSS", "NEPS", 
                "ULS", "FCV", "DAQ", "CESD", "HEXACO", 
                "OCIR", "PTQ", "RAAS", "KSA", "SAS", 
                "MFQ", "CQ", "OLBI", "UWES", "WGS")),
  
  # Explicitly exclude reversed items
  -ends_with("_R"),
  
  # Explicitly exclude other prefixes/patterns
  -starts_with(c("BH", "WS", "BFI", "MS", "PR", "RG", "ZY")),
  -matches("^OC[0-9]"),
)

haven::write_sav(rr_human_data_share, "docs/rr_data.sav")
rio::export(rr_human_data_share, "docs/rr_data.csv")
rio::export(rr_human_data_share, "docs/rr_data.rds")
codebook(rr_human_data_included)

Metadata

Description

Dataset name: rr_human_data_included

The dataset has N=336 rows and 388 columns. 116 rows have no missing values on any column.

Metadata for search engines
  • Date published: 2025-03-29
x
sex
gender
age
race
hispanic
education
occupation
SD05
SD12
SD06
SD07
SD09
SD11_01
CASE
even_odd
psychant
psychsyn
mahal_dist
longstring
time_per_item
not_serious
included
Submission id
Status
Custom study tncs accepted at
Started at
Completed at
Reviewed at
Archived at
Time taken
Total approvals
Fluent languages
Age_prolific
Sex
Ethnicity simplified
Country of birth
Country of residence
Nationality
Language
Student status
Employment status
STARTED
AAID_01
AAID_05
AAID_07
AAID_09
AAID_12
AAID_14
PANAS_09
PANAS_14
PANAS_10
PANAS_05
PANAS_08
PANAS_06
PANAS_04
PANAS_18
OLBI_07
OLBI_10
OLBI_15
OLBI_16
UWES9_01
UWES9_02
UWES9_03
UWES9_04
UWES9_05
UWES9_06
UWES9_07
UWES9_08
UWES9_09
PAQ_08
PAQ_20
PAQ_05
PAQ_17
PAQ_13
PAQ_07
PAQ_10
PAQ_16
PAQ_03
PAQ_15
PSS_01
PSS_02
PSS_03
PSS_08
PSS_11
PSS_12
PSS_14
NEPS_01
NEPS_05
NEPS_07
NEPS_09
NEPS_13
ULS8_01
ULS8_02
ULS8_04
ULS8_05
ULS8_07
ULS8_08
FCV19S_01
FCV19S_02
FCV19S_03
FCV19S_04
FCV19S_05
FCV19S_06
FCV19S_07
DAQ_05
DAQ_07
DAQ_09
DAQ_11
DAQ_15
DAQ_19
DAQ_21
DAQ_23
DAQ_25
DAQ_02
DAQ_06
DAQ_08
DAQ_10
DAQ_12
DAQ_14
DAQ_16
DAQ_24
WGS_01
WGS_02
WGS_03
WGS_04
WGS_05
WGS_06
WGS_07
WGS_08
WGS_09
WGS_10
CESD_01
CESD_02
CESD_03
CESD_05
CESD_06
CESD_07
CESD_09
CESD_10
CESD_11
CESD_13
CESD_14
CESD_15
CESD_17
CESD_18
CESD_19
CESD_20
HEXACO_01
HEXACO_02
HEXACO_06
HEXACO_09
HEXACO_11
HEXACO_12
HEXACO_13
HEXACO_15
HEXACO_17
HEXACO_18
HEXACO_21
HEXACO_22
HEXACO_27
HEXACO_29
OCIR_01
OCIR_02
OCIR_03
OCIR_04
OCIR_05
OCIR_06
OCIR_07
OCIR_08
OCIR_09
OCIR_10
OCIR_11
OCIR_12
OCIR_13
OCIR_14
OCIR_15
OCIR_16
OCIR_17
OCIR_18
PTQ_01
PTQ_02
PTQ_03
PTQ_04
PTQ_05
PTQ_06
PTQ_07
PTQ_08
PTQ_09
PTQ_10
PTQ_11
PTQ_12
PTQ_13
PTQ_14
PTQ_15
RAAS_01
RAAS_05
RAAS_06
RAAS_12
RAAS_14
KSA3_01
KSA3_02
KSA3_03
KSA3_04
KSA3_05
KSA3_06
KSA3_07
KSA3_08
KSA3_09
FRI_01
SAS_01
SAS_02
SAS_03
SAS_04
SAS_05
SAS_07
SAS_08
SAS_09
MFQ_01
MFQ_02
MFQ_03
MFQ_04
MFQ_05
MFQ_06
MFQ_07
MFQ_08
MFQ_09
MFQ_10
MFQ_11
CQ_03
CQ_04
CQ_05
CQ_09
CQ_14
CQ_15
CQ_16
TIME002
TIME003
TIME004
TIME005
TIME006
TIME007
TIME008
TIME009
TIME010
TIME_SUM
LASTDATA
FINISHED
Q_VIEWER
LASTPAGE
MAXPAGE
MISSING
MISSREL
TIME_RSI
CESD_04_R
CESD_08_R
CESD_12_R
CESD_16_R
HEXACO_03_R
HEXACO_04_R
HEXACO_05_R
HEXACO_07_R
HEXACO_08_R
HEXACO_10_R
HEXACO_14_R
HEXACO_16_R
HEXACO_19_R
HEXACO_20_R
HEXACO_26_R
HEXACO_25_R
HEXACO_23_R
HEXACO_24_R
HEXACO_28_R
HEXACO_30_R
NEPS_04_R
NEPS_06_R
NEPS_08_R
NEPS_10_R
NEPS_12_R
OLBI_08_R
OLBI_09_R
OLBI_11_R
OLBI_12_R
PSS_04_R
PSS_05_R
PSS_06_R
PSS_07_R
PSS_09_R
PSS_10_R
PSS_13_R
RAAS_02_R
RAAS_07_R
RAAS_08_R
RAAS_13_R
RAAS_16_R
RAAS_17_R
SAS_06_R
ULS8_03_R
ULS8_06_R
CQ_01_R
CQ_02_R
CQ_06_R
CQ_07_R
CQ_08_R
CQ_10_R
CQ_11_R
CQ_12_R
CQ_13_R
negative_attitude_toward_ai_in_defense
positive_attitude_toward_ai_in_defense
depression_somatic
depression_depressive_affect
depression_well-being
depression_interpersonal
behavioral_escape
behavioral_prevention
cognitive_escape
cognitive_prevention
fear_of_covid-19
agreeableness_forgiveness
honesty-humility_sincerity
agreeableness_gentleness
honesty-humility_fairness_(hexaco)
agreeableness_flexibility
honesty-humility_greed-avoidance
agreeableness_patience
honesty-humility_modesty
conscientiousness_diligence
conscientiousness_organization
conscientiousness_perfectionism
conscientiousness_prudence
authoritarianism_authoritarian_aggression
authoritarianism_authoritarian_submissiveness
authoritarianism_conventionalism
harm
fairness
ingroup
authority
purity
limits_to_growth
antiexemptionalism
eco-crisis
human_domination
balance_of_nature
obsessiveness-compulsiveness_hoarding
obsessiveness-compulsiveness_checking
obsessiveness-compulsiveness_ordering
obsessiveness-compulsiveness_neutralizing
obsessiveness-compulsiveness_washing
obsessiveness-compulsiveness_obsessing
burnout_disengagement
burnout_exhaustion
negative_affect
positive_affect
alexithymia_general-externally_orientated_thinking
alexithymia_positive-difficulty_identifying_feelings
alexithymia_negative-difficulty_describing_feelings
alexithymia_negative-difficulty_identifying_feelings
alexithymia_positive-difficulty_describing_feelings
perceived_stress
perseverative_thinking_core_characteristics_of_repetitive_negative_thinking
perseverative_thinking_unproductiveness_of_repetitive_negative_thinking
perseverative_thinking_repetitive_negative_thinking_capturing_mental_capacity
close
depend
survey_enjoyment
survey_value
survey_burden
loneliness
engagement_vigor
engagement_dedication
engagement_absorption
work_gratitude_grateful_appraisals
work_gratitude_gratitude_toward_others
work_gratitude_intentional_attitude_of_gratitude
distinctness
morningness-eveningness
depression
agreeableness
honesty-humility
conscientiousness
authoritarianism
obsessiveness-compulsiveness
burnout
alexithymia
perseverative_thinking
engagement
work_gratitude
non_hispanic_white

Variables

sex

Sex

Distribution

Distribution of values for sex

Distribution of values for sex

0 missing values.

Summary statistics

name label data_type ordered value_labels n_missing complete_rate n_unique top_counts
sex Sex factor FALSE 1. Female,
2. Male,
3. [NA] Not answered
0 1 2 Fem: 181, Mal: 155, [NA: 0

gender

Gender

Distribution

Distribution of values for gender

Distribution of values for gender

0 missing values.

Summary statistics

name label data_type ordered value_labels n_missing complete_rate n_unique top_counts
gender Gender factor FALSE 1. Same as sex,
2. Other, please specify,
3. [NA] Not answered
0 1 2 Sam: 331, Oth: 5, [NA: 0

age

Age: [01]

Distribution

Distribution of values for age

Distribution of values for age

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
age Age: [01] numeric 0 1 18 47 86 47 16 ▆▇▇▇▁

race

Race

Distribution

Distribution of values for race

Distribution of values for race

0 missing values.

Summary statistics

name label data_type ordered value_labels n_missing complete_rate n_unique top_counts
race Race factor FALSE 1. White,
2. Black/African American,
3. American Indian or Alaska Native,
4. Chinese,
5. Japanese,
6. Other Asian or Pacific Islander,
7. Other race,
8. Two major races (e.g., White and Japanese),
9. Three or more major races,
10. [NA] Not answered
0 1 9 Whi: 234, Bla: 38, Two: 22, Oth: 12

hispanic

Hispan

Distribution

Distribution of values for hispanic

Distribution of values for hispanic

0 missing values.

Summary statistics

name label data_type ordered value_labels n_missing complete_rate n_unique top_counts
hispanic Hispan factor FALSE 1. No, not of Hispanic, Latino, or Spanish origin,
2. Yes, Mexican, Mexican Am., Chicano,
3. Yes, Puerto Rican,
4. Yes, Cuban,
5. Yes, another Hispanic, Latino, or Spanish origin,
6. [NA] Not answered
0 1 5 No,: 294, Yes: 19, Yes: 13, Yes: 7

education

Distribution

Distribution of values for education

Distribution of values for education

0 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
education character 0 1 10 0 7 19 0 NA

occupation

Distribution

Distribution of values for occupation

Distribution of values for occupation

0 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
occupation character 0 1 123 0 6 79 0 NA

SD05

BPL- state

Distribution

## 44  unique, categorical values, so not shown.

0 missing values.

Summary statistics

name label data_type ordered value_labels n_missing complete_rate n_unique top_counts
SD05 BPL- state factor FALSE 1. N/A: not in the US,
2. Alabama,
3. Alaska,
4. Arizona,
5. Arkansas,
6. California,
7. Colorado,
8. Connecticut,
9. Delaware,
10. Florida,
11. Georgia,
12. Hawaii,
13. Idaho,
14. Illinois,
15. Indiana,
16. Iowa,
17. Kansas,
18. Kentucky,
19. Louisiana,
20. Maine,
21. Maryland,
22. Massachusetts,
23. Michigan,
24. Minnesota,
25. Mississippi,
26. Missouri,
27. Montana,
28. Nebraska,
29. Nevada,
30. New Hampshire,
31. New Jersey,
32. New Mexico,
33. New York,
34. North Carolina,
35. North Dakota,
36. Ohio,
37. Oklahoma,
38. Oregon,
39. Pennsylvania,
40. Rhode Island,
41. South Carolina,
42. South Dakota,
43. Tennessee,
44. Texas,
45. Utah,
46. Vermont,
47. Virginia,
48. Washington,
49. West Virginia,
50. Wisconsin,
51. Wyoming,
52. [NA] Not answered
0 1 44 N/A: 67, Cal: 35, New: 30, Tex: 16

SD12

BPL- country

Distribution

Distribution of values for SD12

Distribution of values for SD12

0 missing values.

Summary statistics

name label data_type ordered value_labels n_missing complete_rate n_unique top_counts
SD12 BPL- country factor FALSE 1. United States,
2. Afghanistan,
3. Albania,
4. Algeria,
5. Andorra,
6. Angola,
7. Antigua and Barbuda,
8. Argentina,
9. Armenia,
10. Australia,
11. Austria,
12. Azerbaijan,
13. Bahamas,
14. Bahrain,
15. Bangladesh,
16. Barbados,
17. Belarus,
18. Belgium,
19. Belize,
20. Benin,
21. Bhutan,
22. Bolivia,
23. Bosnia and Herzegovina,
24. Botswana,
25. Brazil,
26. Brunei,
27. Bulgaria,
28. Burkina Faso,
29. Burundi,
30. Cabo Verde,
31. Cambodia,
32. Cameroon,
33. Canada,
34. Central African Republic,
35. Chad,
36. Chile,
37. China,
38. Colombia,
39. Comoros,
40. Congo (Democratic Republic of the),
41. Congo (Republic of the),
42. Costa Rica,
43. Côte d’Ivoire,
44. Croatia,
45. Cuba,
46. Cyprus,
47. Czech Republic,
48. Denmark,
49. Djibouti,
50. Dominica,
51. Dominican Republic,
52. Ecuador,
53. Egypt,
54. El Salvador,
55. Equatorial Guinea,
56. Eritrea,
57. Estonia,
58. Eswatini,
59. Ethiopia,
60. Fiji,
61. Finland,
62. France,
63. Gabon,
64. Gambia,
65. Georgia,
66. Germany,
67. Ghana,
68. Greece,
69. Grenada,
70. Guatemala,
71. Guinea,
72. Guinea-Bissau,
73. Guyana,
74. Haiti,
75. Honduras,
76. Hungary,
77. Iceland,
78. India,
79. Indonesia,
80. Iran,
81. Iraq,
82. Ireland,
83. Israel,
84. Italy,
85. Jamaica,
86. Japan,
87. Jordan,
88. Kazakhstan,
89. Kenya,
90. Kiribati,
91. Kosovo,
92. Kuwait,
93. Kyrgyzstan,
94. Laos,
95. Latvia,
96. Lebanon,
97. Lesotho,
98. Liberia,
99. Libya,
100. Liechtenstein,
101. Lithuania,
102. Luxembourg,
103. Madagascar,
104. Malawi,
105. Malaysia,
106. Maldives,
107. Mali,
108. Malta,
109. Marshall Islands,
110. Mauritania,
111. Mauritius,
112. Mexico,
113. Micronesia,
114. Moldova,
115. Monaco,
116. Mongolia,
117. Montenegro,
118. Morocco,
119. Mozambique,
120. Myanmar,
121. Namibia,
122. Nauru,
123. Nepal,
124. Netherlands,
125. New Zealand,
126. Nicaragua,
127. Niger,
128. Nigeria,
129. North Korea,
130. North Macedonia,
131. Norway,
132. Oman,
133. Pakistan,
134. Palau,
135. Palestine,
136. Panama,
137. Papua New Guinea,
138. Paraguay,
139. Peru,
140. Philippines,
141. Poland,
142. Portugal,
143. Qatar,
144. Romania,
145. Russia,
146. Rwanda,
147. Saint Kitts and Nevis,
148. Saint Lucia,
149. Saint Vincent and the Grenadines,
150. Samoa,
151. San Marino,
152. Sao Tome and Principe,
153. Saudi Arabia,
154. Senegal,
155. Serbia,
156. Seychelles,
157. Sierra Leone,
158. Singapore,
159. Slovakia,
160. Slovenia,
161. Solomon Islands,
162. Somalia,
163. South Africa,
164. South Korea,
165. South Sudan,
166. Spain,
167. Sri Lanka,
168. Sudan,
169. Suriname,
170. Sweden,
171. Switzerland,
172. Syria,
173. Taiwan,
174. Tajikistan,
175. Tanzania,
176. Thailand,
177. Timor-Leste,
178. Togo,
179. Tonga,
180. Trinidad and Tobago,
181. Tunisia,
182. Turkey,
183. Turkmenistan,
184. Tuvalu,
185. Uganda,
186. Ukraine,
187. United Arab Emirates,
188. United Kingdom,
189. Uruguay,
190. Uzbekistan,
191. Vanuatu,
192. Vatican City,
193. Venezuela,
194. Vietnam,
195. Yemen,
196. Zambia,
197. Zimbabwe,
198. [NA] Not answered
0 1 37 Uni: 270, Nig: 7, Gha: 5, Uni: 5

SD06

State

Distribution

## 45  unique, categorical values, so not shown.

0 missing values.

Summary statistics

name label data_type ordered value_labels n_missing complete_rate n_unique top_counts
SD06 State factor FALSE 1. N/A: not in the US,
2. Alabama,
3. Alaska,
4. Arizona,
5. Arkansas,
6. California,
7. Colorado,
8. Connecticut,
9. Delaware,
10. Florida,
11. Georgia,
12. Hawaii,
13. Idaho,
14. Illinois,
15. Indiana,
16. Iowa,
17. Kansas,
18. Kentucky,
19. Louisiana,
20. Maine,
21. Maryland,
22. Massachusetts,
23. Michigan,
24. Minnesota,
25. Mississippi,
26. Missouri,
27. Montana,
28. Nebraska,
29. Nevada,
30. New Hampshire,
31. New Jersey,
32. New Mexico,
33. New York,
34. North Carolina,
35. North Dakota,
36. Ohio,
37. Oklahoma,
38. Oregon,
39. Pennsylvania,
40. Rhode Island,
41. South Carolina,
42. South Dakota,
43. Tennessee,
44. Texas,
45. Utah,
46. Vermont,
47. Virginia,
48. Washington,
49. West Virginia,
50. Wisconsin,
51. Wyoming,
52. [NA] Not answered
0 1 45 Cal: 42, Tex: 30, New: 29, Flo: 19

SD07

Marst

Distribution

Distribution of values for SD07

Distribution of values for SD07

0 missing values.

Summary statistics

name label data_type ordered value_labels n_missing complete_rate n_unique top_counts
SD07 Marst factor FALSE 1. Married,
2. Widowed,
3. Divorced,
4. Separated,
5. Never married/single,
6. [NA] Not answered
0 1 5 Mar: 142, Nev: 127, Div: 50, Sep: 9

SD09

Degfield

Distribution

Distribution of values for SD09

Distribution of values for SD09

0 missing values.

Summary statistics

name label data_type ordered value_labels n_missing complete_rate n_unique top_counts
SD09 Degfield factor FALSE 1. N/A,
2. Agriculture,
3. Environment and Natural Resources,
4. Architecture,
5. Area, Ethnic, and Civilization Studies,
6. Communications,
7. Communication Technologies,
8. Computer and Information Sciences,
9. Cosmetology Services and Culinary Arts,
10. Education Administration and Teaching,
11. Engineering,
12. Engineering Technologies,
13. Linguistics and Foreign Languages,
14. Family and Consumer Sciences,
15. Law,
16. English Language, Literature, and Composition,
17. Liberal Arts and Humanities,
18. Library Science,
19. Biology and Life Sciences,
20. Mathematics and Statistics,
21. Military Technologies,
22. Interdisciplinary and Multi-Disciplinary Studies (General),
23. Physical Fitness, Parks, Recreation, and Leisure,
24. Philosophy and Religious Studies,
25. Theology and Religious Vocations,
26. Physical Sciences,
27. Nuclear, Industrial Radiology, and Biological Technologies,
28. Psychology,
29. Criminal Justice and Fire Protection,
30. Public Affairs, Policy, and Social Work,
31. Social Sciences,
32. Construction Services,
33. Electrical and Mechanic Repairs and Technologies,
34. Precision Production and Industrial Arts,
35. Transportation Sciences and Technologies,
36. Fine Arts,
37. Medical and Health Sciences and Services,
38. Business,
39. History,
40. [NA] Not answered
0 1 30 [NA: 104, N/A: 30, Bus: 30, Psy: 20

SD11_01

Inctot: [01]

Distribution

Distribution of values for SD11_01

Distribution of values for SD11_01

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
SD11_01 Inctot: [01] numeric 0 1 0 42000 5e+05 52433 52411 ▇▁▁▁▁

CASE

Distribution

Distribution of values for CASE

Distribution of values for CASE

0 missing values.

Summary statistics

name data_type n_missing complete_rate min median max mean sd hist label
CASE numeric 0 1 485 936 1233 905 213 ▅▆▅▇▇ NA

even_odd

Distribution

Distribution of values for even_odd

Distribution of values for even_odd

0 missing values.

Summary statistics

name data_type n_missing complete_rate min median max mean sd hist label
even_odd numeric 0 1 -0.97 -0.79 -0.45 -0.77 0.12 ▅▇▆▂▁ NA

psychant

Distribution

Distribution of values for psychant

Distribution of values for psychant

0 missing values.

Summary statistics

name data_type n_missing complete_rate min median max mean sd hist label
psychant numeric 0 1 -0.99 -0.52 -0.036 -0.52 0.26 ▇▇▇▇▆ NA

psychsyn

Distribution

Distribution of values for psychsyn

Distribution of values for psychsyn

0 missing values.

Summary statistics

name data_type n_missing complete_rate min median max mean sd hist label
psychsyn numeric 0 1 0.25 0.74 0.99 0.72 0.15 ▁▂▅▇▅ NA

mahal_dist

Distribution

Distribution of values for mahal_dist

Distribution of values for mahal_dist

0 missing values.

Summary statistics

name data_type n_missing complete_rate min median max mean sd hist label
mahal_dist numeric 0 1 108 206 254 202 34 ▁▃▆▇▇ NA

longstring

Distribution

Distribution of values for longstring

Distribution of values for longstring

0 missing values.

Summary statistics

name data_type n_missing complete_rate min median max mean sd hist label
longstring numeric 0 1 4 8 47 10 5.3 ▇▂▁▁▁ NA

time_per_item

Time spent on page 5

Distribution

Distribution of values for time_per_item

Distribution of values for time_per_item

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
time_per_item Time spent on page 5 numeric 0 1 2 5.1 38 5.9 3.5 ▇▁▁▁▁

not_serious

Distribution

Distribution of values for not_serious

Distribution of values for not_serious

0 missing values.

Summary statistics

name data_type n_missing complete_rate count mean label
not_serious logical 0 1 FAL: 336 0 NA

included

Distribution

Distribution of values for included

Distribution of values for included

0 missing values.

Summary statistics

name data_type n_missing complete_rate count mean label
included logical 0 1 TRU: 336 1 NA

Submission id

Distribution

Distribution of values for Submission id

Distribution of values for Submission id

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Submission id character 2 0.99 334 0 24 24 0 NA

Status

Distribution

Distribution of values for Status

Distribution of values for Status

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Status character 2 0.99 2 0 8 9 0 NA

Custom study tncs accepted at

Distribution

Distribution of values for Custom study tncs accepted at

Distribution of values for Custom study tncs accepted at

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Custom study tncs accepted at character 2 0.99 1 0 14 14 0 NA

Started at

Distribution

## 334  unique, categorical values, so not shown.

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique min median max label
Started at POSIXct 2 0.99 334 2024-11-01 17:31:04.169 2024-11-01 18:24:21.216 2024-11-01 23:48:28.873 NA

Completed at

Distribution

## 333  unique, categorical values, so not shown.

3 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique min median max label
Completed at POSIXct 3 0.99 333 2024-11-01 17:55:55.783 2024-11-01 20:30:42.459 2024-11-02 11:41:16.442 NA

Reviewed at

Distribution

## 333  unique, categorical values, so not shown.

3 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique min median max label
Reviewed at POSIXct 3 0.99 333 2024-11-01 18:56:00.582 2024-11-01 21:28:35.482 2024-11-02 11:41:18.331 NA

Archived at

Distribution

## 334  unique, categorical values, so not shown.

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique min median max label
Archived at POSIXct 2 0.99 334 2024-11-01 17:56:56.831575 2024-11-01 20:36:19.551709 2024-11-02 11:41:36.194494 NA

Time taken

Distribution

Distribution of values for Time taken

Distribution of values for Time taken

2 missing values.

Summary statistics

name data_type n_missing complete_rate min median max mean sd hist label
Time taken numeric 2 0.99 468 2382 60298 3971 7099 ▇▁▁▁▁ NA

Total approvals

Distribution

Distribution of values for Total approvals

Distribution of values for Total approvals

2 missing values.

Summary statistics

name data_type n_missing complete_rate min median max mean sd hist label
Total approvals numeric 2 0.99 0 711 9195 1479 1788 ▇▂▁▁▁ NA

Fluent languages

Distribution

Distribution of values for Fluent languages

Distribution of values for Fluent languages

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Fluent languages character 2 0.99 33 0 7 47 0 NA

Age_prolific

Distribution

Distribution of values for Age_prolific

Distribution of values for Age_prolific

2 missing values.

Summary statistics

name data_type n_missing complete_rate min median max mean sd hist label
Age_prolific numeric 2 0.99 18 47 86 47 16 ▆▇▇▇▁ NA

Sex

Distribution

Distribution of values for Sex

Distribution of values for Sex

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Sex character 2 0.99 2 0 4 6 0 NA

Ethnicity simplified

Distribution

Distribution of values for Ethnicity simplified

Distribution of values for Ethnicity simplified

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Ethnicity simplified character 2 0.99 5 0 5 5 0 NA

Country of birth

Distribution

Distribution of values for Country of birth

Distribution of values for Country of birth

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Country of birth character 2 0.99 37 0 4 22 0 NA

Country of residence

Distribution

Distribution of values for Country of residence

Distribution of values for Country of residence

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Country of residence character 2 0.99 1 0 13 13 0 NA

Nationality

Distribution

Distribution of values for Nationality

Distribution of values for Nationality

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Nationality character 2 0.99 25 0 4 22 0 NA

Language

Distribution

Distribution of values for Language

Distribution of values for Language

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Language character 2 0.99 17 0 3 16 0 NA

Student status

Distribution

Distribution of values for Student status

Distribution of values for Student status

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Student status character 2 0.99 3 0 2 12 0 NA

Employment status

Distribution

Distribution of values for Employment status

Distribution of values for Employment status

2 missing values.

Summary statistics

name data_type n_missing complete_rate n_unique empty min max whitespace label
Employment status character 2 0.99 7 0 5 56 0 NA

STARTED

Time the interview has started (Europe/Berlin)

Distribution

## 329  unique, categorical values, so not shown.

0 missing values.

Summary statistics

name label data_type n_missing complete_rate n_unique min median max
STARTED Time the interview has started (Europe/Berlin) POSIXct 0 1 329 2024-11-01 18:32:45 2024-11-01 20:16:14 2024-11-02 00:48:32

FRI_01

Authoritarianism Short Scale: Nuclear weapons would be dangerous if they got into the wrong hands.

Distribution

Distribution of values for FRI_01

Distribution of values for FRI_01

172 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist 1 2 3 4 5 6 7
FRI_01 Authoritarianism Short Scale: Nuclear weapons would be dangerous if they got into the wrong hands. numeric 172 0.49 1 7 7 6.7 0.78 ▁▁▁▁▇ strongly disagree disagree slightly disagree neither agree nor disagree slightly agree agree strongly agree

MFQ_06

Moral Foundations Questionnaire: It is better to do good than to do bad.

Distribution

Distribution of values for MFQ_06

Distribution of values for MFQ_06

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd n_value_labels hist
MFQ_06 Moral Foundations Questionnaire: It is better to do good than to do bad. haven_labelled 0 1 2 7 7 6.6 0.72 7 ▁▁▁▁▁▁▃▇

Value labels

Response choices
name value
strongly disagree 1
disagree 2
slightly disagree 3
neither agree nor disagree 4
slightly agree 5
agree 6
strongly agree 7

TIME002

Time spent on page 2

Distribution

Distribution of values for TIME002

Distribution of values for TIME002

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME002 Time spent on page 2 numeric 0 1 2 12 1452 57 171 ▇▁▁▁▁

TIME003

Time spent on page 3

Distribution

Distribution of values for TIME003

Distribution of values for TIME003

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME003 Time spent on page 3 numeric 0 1 28 131 1981 169 178 ▇▁▁▁▁

TIME004

Time spent on page 4

Distribution

Distribution of values for TIME004

Distribution of values for TIME004

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME004 Time spent on page 4 numeric 0 1 16 44 2875 73 201 ▇▁▁▁▁

TIME005

Time spent on page 5

Distribution

Distribution of values for TIME005

Distribution of values for TIME005

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME005 Time spent on page 5 numeric 0 1 539 1362 10262 1576 945 ▇▁▁▁▁

TIME006

Time spent on page 6

Distribution

Distribution of values for TIME006

Distribution of values for TIME006

1 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME006 Time spent on page 6 numeric 1 1 40 110 616 129 77 ▇▂▁▁▁

TIME007

Time spent on page 7

Distribution

Distribution of values for TIME007

Distribution of values for TIME007

1 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME007 Time spent on page 7 numeric 1 1 8 31 372 39 31 ▇▁▁▁▁

TIME008

Time spent on page 8

Distribution

Distribution of values for TIME008

Distribution of values for TIME008

1 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME008 Time spent on page 8 numeric 1 1 6 18 682 25 40 ▇▁▁▁▁

TIME009

Time spent on page 9

Distribution

Distribution of values for TIME009

Distribution of values for TIME009

1 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME009 Time spent on page 9 numeric 1 1 88 303 2409 363 270 ▇▁▁▁▁

TIME010

Time spent on page 10

Distribution

Distribution of values for TIME010

Distribution of values for TIME010

4 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME010 Time spent on page 10 numeric 4 0.99 5 28 594 42 57 ▇▁▁▁▁

TIME_SUM

Time spent overall (except outliers)

Distribution

Distribution of values for TIME_SUM

Distribution of values for TIME_SUM

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME_SUM Time spent overall (except outliers) numeric 0 1 792 2064 4944 2257 794 ▅▇▅▂▁

LASTDATA

Time when the data was most recently updated

Distribution

## 329  unique, categorical values, so not shown.

0 missing values.

Summary statistics

name label data_type n_missing complete_rate n_unique min median max
LASTDATA Time when the data was most recently updated POSIXct 0 1 329 2024-11-01 18:55:50 2024-11-01 21:05:10 2024-11-02 01:34:08

FINISHED

Has the interview been finished (reached last page)?

Distribution

Distribution of values for FINISHED

Distribution of values for FINISHED

0 missing values.

Summary statistics

name label data_type n_missing complete_rate count mean F T
FINISHED Has the interview been finished (reached last page)? logical 0 1 TRU: 332, FAL: 4 0.99 Canceled Finished

Q_VIEWER

Did the respondent only view the questionnaire, omitting mandatory questions?

Distribution

Distribution of values for Q_VIEWER

Distribution of values for Q_VIEWER

0 missing values.

Summary statistics

name label data_type n_missing complete_rate count mean F T
Q_VIEWER Did the respondent only view the questionnaire, omitting mandatory questions? logical 0 1 FAL: 336 0 Respondent Spectator

LASTPAGE

Last page that the participant has handled in the questionnaire

Distribution

Distribution of values for LASTPAGE

Distribution of values for LASTPAGE

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
LASTPAGE Last page that the participant has handled in the questionnaire numeric 0 1 5 10 10 10 0.29 ▁▁▁▁▇

MAXPAGE

Hindmost page handled by the participant

Distribution

Distribution of values for MAXPAGE

Distribution of values for MAXPAGE

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
MAXPAGE Hindmost page handled by the participant numeric 0 1 5 10 10 10 0.29 ▁▁▁▁▇

MISSING

Missing answers in percent

Distribution

Distribution of values for MISSING

Distribution of values for MISSING

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
MISSING Missing answers in percent numeric 0 1 0 0 1 0.1 0.31 ▇▁▁▁▁

MISSREL

Missing answers (weighted by relevance)

Distribution

Distribution of values for MISSREL

Distribution of values for MISSREL

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
MISSREL Missing answers (weighted by relevance) numeric 0 1 0 0 1 0.09 0.29 ▇▁▁▁▁

TIME_RSI

Completion Speed (relative)

Distribution

Distribution of values for TIME_RSI

Distribution of values for TIME_RSI

0 missing values.

Summary statistics

name label data_type n_missing complete_rate min median max mean sd hist
TIME_RSI Completion Speed (relative) numeric 0 1 0.41 1.1 2.4 1.1 0.4 ▆▇▅▂▁

Scale: negative_attitude_toward_ai_in_defense

Overview

Reliability: Cronbach’s α [95% CI] = 0.82 [0.79;0.86].

Missing: 0.

Likert plot of scale negative_attitude_toward_ai_in_defense items

Likert plot of scale negative_attitude_toward_ai_in_defense items

Distribution of scale negative_attitude_toward_ai_in_defense

Distribution of scale negative_attitude_toward_ai_in_defense

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.79 0.82 0.86
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.82 0.82 0.76 0.61 4.7 0.02 5.8 1 0.62
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
AAID_01 0.78 0.78 0.64 0.64 3.5 0.02 NA 0.64
AAID_05 0.77 0.77 0.62 0.62 3.3 0.03 NA 0.62
AAID_09 0.73 0.73 0.57 0.57 2.7 0.03 NA 0.57
Item statistics
n raw.r std.r r.cor r.drop mean sd
AAID_01 336 0.85 0.85 0.72 0.66 5.7 1.1
AAID_05 336 0.86 0.86 0.74 0.67 5.8 1.2
AAID_09 336 0.87 0.87 0.78 0.71 5.8 1.1
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
AAID_01 0.01 0.01 0.03 0.09 0.22 0.4 0.25 0
AAID_05 0.00 0.02 0.04 0.06 0.16 0.4 0.32 0
AAID_09 0.01 0.01 0.02 0.09 0.20 0.4 0.28 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
AAID_01 Attitudes Toward AI in Defense Scale: The use of AI in Defense could be used to spy on us haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.7 1.1 7 ▁▁▁▂▁▅▇▅
AAID_05 Attitudes Toward AI in Defense Scale: The use of AI in Defense could be used unethically by those in power haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.8 1.2 7 ▁▁▁▁▁▃▇▆
AAID_09 Attitudes Toward AI in Defense Scale: The use of AI in Defense could lead to unforeseen consequences haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.8 1.1 7 ▁▁▁▂▁▃▇▆

Scale: positive_attitude_toward_ai_in_defense

Overview

Reliability: Cronbach’s α [95% CI] = 0.91 [0.89;0.93].

Missing: 0.

Likert plot of scale positive_attitude_toward_ai_in_defense items

Likert plot of scale positive_attitude_toward_ai_in_defense items

Distribution of scale positive_attitude_toward_ai_in_defense

Distribution of scale positive_attitude_toward_ai_in_defense

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.89 0.91 0.93
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.91 0.91 0.87 0.77 10 0.01 4.9 1.2 0.77
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
AAID_07 0.88 0.89 0.79 0.79 7.7 0.01 NA 0.79
AAID_12 0.87 0.87 0.77 0.77 6.8 0.01 NA 0.77
AAID_14 0.86 0.86 0.75 0.75 6.0 0.02 NA 0.75
Item statistics
n raw.r std.r r.cor r.drop mean sd
AAID_07 336 0.92 0.91 0.84 0.81 4.7 1.4
AAID_12 336 0.92 0.92 0.86 0.82 5.0 1.3
AAID_14 336 0.93 0.93 0.88 0.84 5.0 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
AAID_07 0.02 0.06 0.05 0.29 0.23 0.28 0.06 0
AAID_12 0.01 0.04 0.03 0.22 0.25 0.34 0.09 0
AAID_14 0.02 0.04 0.06 0.21 0.23 0.35 0.09 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
AAID_07 Attitudes Toward AI in Defense Scale: The use of AI in Defense could be used to maintain peace haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.7 1.4 7 ▁▂▂▇▁▆▇▂
AAID_12 Attitudes Toward AI in Defense Scale: The use of AI in Defense could save lives haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 5.0 1.3 7 ▁▁▁▅▁▆▇▂
AAID_14 Attitudes Toward AI in Defense Scale: The use of AI in Defense could protect critical national infrastructure haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 5.0 1.4 7 ▁▁▂▅▁▅▇▂

Scale: depression_somatic

Overview

Reliability: Cronbach’s α [95% CI] = 0.88 [0.86;0.9].

Missing: 0.

Likert plot of scale depression_somatic items

Likert plot of scale depression_somatic items

Distribution of scale depression_somatic

Distribution of scale depression_somatic

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.86 0.88 0.9
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.88 0.88 0.87 0.51 7.4 0.01 2.8 1.1 0.51
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
CESD_01 0.86 0.86 0.84 0.50 6.1 0.01 0.00 0.48
CESD_02 0.86 0.87 0.85 0.52 6.5 0.01 0.01 0.51
CESD_05 0.86 0.87 0.85 0.52 6.5 0.01 0.00 0.51
CESD_07 0.87 0.87 0.85 0.52 6.5 0.01 0.00 0.51
CESD_11 0.87 0.87 0.86 0.53 6.8 0.01 0.00 0.51
CESD_13 0.86 0.86 0.85 0.51 6.4 0.01 0.00 0.50
CESD_20 0.85 0.85 0.83 0.49 5.7 0.01 0.00 0.48
Item statistics
n raw.r std.r r.cor r.drop mean sd
CESD_01 336 0.78 0.79 0.75 0.70 2.4 1.2
CESD_02 336 0.74 0.75 0.69 0.65 2.2 1.4
CESD_05 336 0.75 0.75 0.69 0.64 2.9 1.5
CESD_07 336 0.75 0.74 0.68 0.64 3.2 1.6
CESD_11 336 0.72 0.71 0.64 0.60 3.2 1.6
CESD_13 336 0.76 0.76 0.71 0.66 2.7 1.5
CESD_20 336 0.84 0.84 0.82 0.77 2.9 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
CESD_01 0.29 0.33 0.18 0.15 0.03 0.01 0.01 0
CESD_02 0.42 0.26 0.12 0.11 0.05 0.03 0.00 0
CESD_05 0.18 0.32 0.17 0.16 0.10 0.06 0.01 0
CESD_07 0.17 0.23 0.18 0.15 0.16 0.09 0.02 0
CESD_11 0.13 0.26 0.23 0.18 0.12 0.07 0.02 0
CESD_13 0.25 0.25 0.19 0.19 0.07 0.04 0.01 0
CESD_20 0.19 0.30 0.18 0.16 0.09 0.06 0.02 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
CESD_01 Center for Epidemiological Studies Depression Scale: I was bothered by things that usually don’t bother me. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.4 1.2 7 ▇▇▅▃▁▁▁▁
CESD_02 Center for Epidemiological Studies Depression Scale: I did not feel like eating; my appetite was poor. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.2 1.4 7 ▇▅▂▂▁▁▁▁
CESD_05 Center for Epidemiological Studies Depression Scale: I had trouble keeping my mind on what I was doing. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.9 1.5 7 ▅▇▅▃▁▂▂▁
CESD_07 Center for Epidemiological Studies Depression Scale: I felt that everything I did was an effort. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 3.2 1.6 7 ▆▇▆▆▁▆▃▁
CESD_11 Center for Epidemiological Studies Depression Scale: My sleep was restless. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 3.2 1.6 7 ▃▇▇▆▁▃▂▁
CESD_13 Center for Epidemiological Studies Depression Scale: I talked less than usual. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.5 7 2.7 1.5 7 ▇▇▆▆▁▂▂▁
CESD_20 Center for Epidemiological Studies Depression Scale: I could not get “going”. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 2.9 1.6 7 ▅▇▅▅▁▂▂▁

Scale: depression_depressive_affect

Overview

Reliability: Cronbach’s α [95% CI] = 0.93 [0.92;0.94].

Missing: 0.

Likert plot of scale depression_depressive_affect items

Likert plot of scale depression_depressive_affect items

Distribution of scale depression_depressive_affect

Distribution of scale depression_depressive_affect

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.92 0.93 0.94
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.93 0.93 0.93 0.66 13 0.01 2.5 1.3 0.67
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
CESD_03 0.92 0.92 0.91 0.64 11 0.01 0.01 0.67
CESD_06 0.91 0.91 0.90 0.63 10 0.01 0.01 0.63
CESD_09 0.92 0.92 0.91 0.65 11 0.01 0.01 0.67
CESD_10 0.93 0.92 0.92 0.67 12 0.01 0.01 0.70
CESD_14 0.92 0.92 0.92 0.67 12 0.01 0.01 0.67
CESD_17 0.94 0.94 0.93 0.71 15 0.01 0.00 0.70
CESD_18 0.91 0.91 0.90 0.64 11 0.01 0.01 0.63
Item statistics
n raw.r std.r r.cor r.drop mean sd
CESD_03 336 0.88 0.88 0.86 0.83 2.5 1.6
CESD_06 336 0.92 0.91 0.91 0.88 2.7 1.7
CESD_09 336 0.88 0.87 0.85 0.82 2.5 1.7
CESD_10 336 0.80 0.81 0.76 0.73 2.3 1.4
CESD_14 336 0.83 0.82 0.78 0.75 2.8 1.7
CESD_17 336 0.68 0.70 0.62 0.60 1.8 1.2
CESD_18 336 0.90 0.89 0.89 0.86 2.9 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
CESD_03 0.38 0.24 0.12 0.12 0.07 0.04 0.03 0
CESD_06 0.30 0.26 0.14 0.13 0.09 0.04 0.04 0
CESD_09 0.42 0.22 0.12 0.10 0.07 0.03 0.04 0
CESD_10 0.35 0.29 0.15 0.12 0.05 0.02 0.01 0
CESD_14 0.29 0.23 0.15 0.13 0.11 0.05 0.02 0
CESD_17 0.57 0.24 0.08 0.06 0.04 0.01 0.00 0
CESD_18 0.15 0.32 0.23 0.13 0.08 0.05 0.03 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
CESD_03 Center for Epidemiological Studies Depression Scale: I felt that I could not shake off the blues even with help from my family or friends. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2 7 2.5 1.6 7 ▇▅▂▂▁▂▁▁
CESD_06 Center for Epidemiological Studies Depression Scale: I felt depressed. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2 7 2.7 1.7 7 ▇▇▃▃▁▂▁▁
CESD_09 Center for Epidemiological Studies Depression Scale: I thought my life had been a failure. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2 7 2.5 1.7 7 ▇▅▂▂▁▁▁▁
CESD_10 Center for Epidemiological Studies Depression Scale: I felt fearful. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2 7 2.3 1.4 7 ▇▆▃▃▁▁▁▁
CESD_14 Center for Epidemiological Studies Depression Scale: I felt lonely. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2 7 2.8 1.7 7 ▇▆▅▃▁▃▂▁
CESD_17 Center for Epidemiological Studies Depression Scale: I had crying spells. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 1 7 1.8 1.2 7 ▇▃▁▁▁▁▁▁
CESD_18 Center for Epidemiological Studies Depression Scale: I felt sad. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3 7 2.9 1.5 7 ▃▇▆▃▁▂▁▁

Scale: depression_well-being

Overview

Reliability: Cronbach’s α [95% CI] = 0.9 [0.88;0.92].

Missing: 0.

Likert plot of scale depression_well-being items

Likert plot of scale depression_well-being items

Distribution of scale depression_well-being

Distribution of scale depression_well-being

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.88 0.9 0.92
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.9 0.9 0.88 0.7 9.1 0.01 3.2 1.4 0.69
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
CESD_04_R 0.91 0.91 0.88 0.77 10.2 0.01 0.00 0.75
CESD_08_R 0.88 0.88 0.85 0.71 7.3 0.01 0.02 0.65
CESD_12_R 0.85 0.85 0.79 0.65 5.5 0.01 0.01 0.65
CESD_16_R 0.85 0.85 0.80 0.65 5.6 0.01 0.01 0.62
Item statistics
n raw.r std.r r.cor r.drop mean sd
CESD_04_R 336 0.81 0.81 0.70 0.67 3.0 1.6
CESD_08_R 336 0.87 0.87 0.80 0.76 3.5 1.6
CESD_12_R 336 0.92 0.92 0.91 0.85 3.2 1.5
CESD_16_R 336 0.91 0.92 0.90 0.84 3.2 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
CESD_04_R 0.19 0.23 0.23 0.18 0.10 0.05 0.02 0
CESD_08_R 0.11 0.20 0.21 0.21 0.14 0.10 0.03 0
CESD_12_R 0.13 0.22 0.26 0.19 0.12 0.07 0.01 0
CESD_16_R 0.14 0.23 0.25 0.17 0.12 0.07 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
CESD_04_R Center for Epidemiological Studies Depression Scale: I felt that I was just as good as other people. haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3 7 3.0 1.6 7 ▆▇▇▆▁▃▂▁
CESD_08_R Center for Epidemiological Studies Depression Scale: I felt hopeful about the future. haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3 7 3.5 1.6 7 ▅▇▇▇▁▆▃▁
CESD_12_R Center for Epidemiological Studies Depression Scale: I was happy. haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3 7 3.2 1.5 7 ▅▇▇▆▁▃▂▁
CESD_16_R Center for Epidemiological Studies Depression Scale: I enjoyed life. haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3 7 3.2 1.5 7 ▅▇▇▆▁▃▂▁

Scale: depression_interpersonal

Overview

Reliability: Cronbach’s α [95% CI] = 0.74 [0.68;0.79].

Missing: 0.

Likert plot of scale depression_interpersonal items

Likert plot of scale depression_interpersonal items

Distribution of scale depression_interpersonal

Distribution of scale depression_interpersonal

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.68 0.74 0.79
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.74 0.75 0.6 0.6 3 0.03 2.3 1.1 0.6
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
CESD_15 0.48 0.6 0.36 0.6 1.5 NA 0 0.6
CESD_19 0.76 0.6 0.36 0.6 1.5 NA 0 0.6
Item statistics
n raw.r std.r r.cor r.drop mean sd
CESD_15 336 0.87 0.89 0.69 0.6 2.3 1.1
CESD_19 336 0.92 0.89 0.69 0.6 2.4 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
CESD_15 0.26 0.41 0.18 0.12 0.02 0.01 0.00 0
CESD_19 0.31 0.34 0.15 0.12 0.06 0.02 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
CESD_15 Center for Epidemiological Studies Depression Scale: People were unfriendly. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2 6 2.3 1.1 7 ▅▇▁▃▂▁▁▁
CESD_19 Center for Epidemiological Studies Depression Scale: I felt that people dislike me. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2 7 2.4 1.4 7 ▇▇▃▃▁▂▁▁

Scale: behavioral_escape

Overview

Reliability: Cronbach’s α [95% CI] = 0.92 [0.91;0.94].

Missing: 0.

Likert plot of scale behavioral_escape items

Likert plot of scale behavioral_escape items

Distribution of scale behavioral_escape

Distribution of scale behavioral_escape

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.91 0.92 0.94
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.92 0.92 0.9 0.75 12 0.01 5.4 1.2 0.75
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
DAQ_02 0.91 0.91 0.87 0.77 9.9 0.01 0 0.77
DAQ_06 0.90 0.90 0.86 0.75 8.9 0.01 0 0.76
DAQ_08 0.90 0.90 0.86 0.76 9.4 0.01 0 0.76
DAQ_10 0.89 0.89 0.84 0.73 8.0 0.01 0 0.74
Item statistics
n raw.r std.r r.cor r.drop mean sd
DAQ_02 336 0.89 0.89 0.83 0.80 5.5 1.3
DAQ_06 336 0.90 0.90 0.86 0.82 5.7 1.2
DAQ_08 336 0.90 0.90 0.85 0.81 5.3 1.3
DAQ_10 336 0.92 0.92 0.89 0.86 5.3 1.3
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
DAQ_02 0.01 0.03 0.05 0.08 0.20 0.44 0.19 0
DAQ_06 0.01 0.03 0.04 0.07 0.17 0.46 0.23 0
DAQ_08 0.01 0.04 0.07 0.14 0.24 0.35 0.17 0
DAQ_10 0.00 0.04 0.08 0.09 0.22 0.40 0.17 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
DAQ_02 Disgust Avoidance Questionnaire: I am quick to stop any activity that makes me feel disgusted. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.5 1.3 7 ▁▁▁▂▁▃▇▃
DAQ_06 Disgust Avoidance Questionnaire: If I start feeling strong disgust, I prefer to leave the situation. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.7 1.2 7 ▁▁▁▁▁▃▇▃
DAQ_08 Disgust Avoidance Questionnaire: If I am in a situation in which I feel revolted, I leave the situation immediately. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.3 1.3 7 ▁▁▂▃▁▆▇▃
DAQ_10 Disgust Avoidance Questionnaire: I am quick to leave any situation that makes me feel disgusted. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.3 1.3 7 ▁▁▂▂▁▅▇▃

Scale: behavioral_prevention

Overview

Reliability: Cronbach’s α [95% CI] = 0.94 [0.93;0.95].

Missing: 0.

Likert plot of scale behavioral_prevention items

Likert plot of scale behavioral_prevention items

Distribution of scale behavioral_prevention

Distribution of scale behavioral_prevention

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.93 0.94 0.95
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.94 0.94 0.93 0.75 15 0.01 5.4 1.2 0.75
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
DAQ_05 0.92 0.92 0.90 0.75 12 0.01 0 0.75
DAQ_07 0.92 0.92 0.90 0.75 12 0.01 0 0.75
DAQ_09 0.93 0.93 0.91 0.76 13 0.01 0 0.76
DAQ_11 0.93 0.93 0.90 0.76 12 0.01 0 0.75
DAQ_15 0.92 0.92 0.90 0.75 12 0.01 0 0.75
Item statistics
n raw.r std.r r.cor r.drop mean sd
DAQ_05 336 0.89 0.90 0.86 0.84 5.6 1.2
DAQ_07 336 0.91 0.91 0.88 0.85 5.4 1.3
DAQ_09 336 0.88 0.88 0.84 0.81 5.4 1.4
DAQ_11 336 0.90 0.89 0.86 0.83 5.4 1.4
DAQ_15 336 0.90 0.90 0.87 0.84 5.4 1.3
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
DAQ_05 0.01 0.03 0.04 0.07 0.19 0.44 0.22 0
DAQ_07 0.01 0.04 0.05 0.09 0.22 0.43 0.16 0
DAQ_09 0.01 0.05 0.05 0.08 0.23 0.40 0.18 0
DAQ_11 0.01 0.05 0.07 0.09 0.16 0.47 0.15 0
DAQ_15 0.01 0.04 0.05 0.11 0.21 0.44 0.15 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
DAQ_05 Disgust Avoidance Questionnaire: I try to avoid activities that could make me feel disgusted. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.6 1.2 7 ▁▁▁▂▁▃▇▅
DAQ_07 Disgust Avoidance Questionnaire: I avoid actions that remind me of repulsive things. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.4 1.3 7 ▁▁▁▂▁▅▇▃
DAQ_09 Disgust Avoidance Questionnaire: I try hard to avoid situations that might bring up feelings of repulsion in me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.4 1.4 7 ▁▁▁▂▁▅▇▃
DAQ_11 Disgust Avoidance Questionnaire: I avoid certain situations that make me pay attention to disgusting things. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.4 1.4 7 ▁▁▁▂▁▃▇▂
DAQ_15 Disgust Avoidance Questionnaire: I avoid objects that can trigger feelings of disgust. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.4 1.3 7 ▁▁▁▂▁▃▇▃

Scale: cognitive_escape

Overview

Reliability: Cronbach’s α [95% CI] = 0.92 [0.9;0.93].

Missing: 0.

Likert plot of scale cognitive_escape items

Likert plot of scale cognitive_escape items

Distribution of scale cognitive_escape

Distribution of scale cognitive_escape

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.9 0.92 0.93
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.92 0.92 0.89 0.74 11 0.01 5.5 1.1 0.72
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
DAQ_12 0.89 0.89 0.85 0.73 8.2 0.01 0 0.73
DAQ_14 0.88 0.88 0.83 0.71 7.5 0.01 0 0.72
DAQ_16 0.90 0.90 0.85 0.74 8.6 0.01 0 0.73
DAQ_24 0.90 0.90 0.86 0.75 9.2 0.01 0 0.75
Item statistics
n raw.r std.r r.cor r.drop mean sd
DAQ_12 336 0.89 0.90 0.85 0.81 5.5 1.2
DAQ_14 336 0.92 0.91 0.88 0.84 5.5 1.4
DAQ_16 336 0.89 0.89 0.84 0.80 5.5 1.2
DAQ_24 336 0.88 0.88 0.82 0.78 5.4 1.3
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
DAQ_12 0.01 0.03 0.04 0.08 0.23 0.43 0.18 0
DAQ_14 0.01 0.04 0.05 0.09 0.18 0.45 0.18 0
DAQ_16 0.01 0.03 0.04 0.08 0.23 0.42 0.19 0
DAQ_24 0.01 0.04 0.04 0.12 0.19 0.44 0.16 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
DAQ_12 Disgust Avoidance Questionnaire: When I think about something gross, I push those thoughts out of my mind. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.5 1.2 7 ▁▁▁▂▁▅▇▃
DAQ_14 Disgust Avoidance Questionnaire: When thoughts about repulsive things come up, I try very hard to stop thinking about them. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.5 1.4 7 ▁▁▁▂▁▃▇▃
DAQ_16 Disgust Avoidance Questionnaire: If thoughts about disgusting things cross my mind, I try to push them away as much as possible. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.5 1.2 7 ▁▁▁▂▁▅▇▃
DAQ_24 Disgust Avoidance Questionnaire: When thoughts about revolting things come up, I try to fill my head with something else. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.4 1.3 7 ▁▁▁▂▁▃▇▃

Scale: cognitive_prevention

Overview

Reliability: Cronbach’s α [95% CI] = 0.89 [0.87;0.91].

Missing: 0.

Likert plot of scale cognitive_prevention items

Likert plot of scale cognitive_prevention items

Distribution of scale cognitive_prevention

Distribution of scale cognitive_prevention

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.87 0.89 0.91
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.89 0.89 0.87 0.68 8.4 0.01 5.4 1.2 0.68
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
DAQ_19 0.87 0.87 0.83 0.70 7.0 0.01 0 0.68
DAQ_21 0.87 0.87 0.82 0.69 6.7 0.01 0 0.69
DAQ_23 0.86 0.86 0.80 0.67 6.0 0.01 0 0.68
DAQ_25 0.84 0.85 0.79 0.65 5.5 0.01 0 0.64
Item statistics
n raw.r std.r r.cor r.drop mean sd
DAQ_19 336 0.84 0.85 0.77 0.73 5.7 1.2
DAQ_21 336 0.86 0.86 0.78 0.74 5.4 1.4
DAQ_23 336 0.88 0.88 0.83 0.78 5.2 1.4
DAQ_25 336 0.89 0.90 0.86 0.81 5.3 1.3
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
DAQ_19 0.01 0.03 0.04 0.06 0.18 0.44 0.24 0
DAQ_21 0.02 0.04 0.04 0.12 0.19 0.38 0.21 0
DAQ_23 0.01 0.06 0.06 0.14 0.20 0.38 0.15 0
DAQ_25 0.01 0.05 0.04 0.12 0.24 0.42 0.13 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
DAQ_19 Disgust Avoidance Questionnaire: I try not to think about gross situations. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.7 1.2 7 ▁▁▁▁▁▃▇▅
DAQ_21 Disgust Avoidance Questionnaire: I try hard to avoid thinking about a repulsive past situation. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.4 1.4 7 ▁▁▁▂▁▃▇▅
DAQ_23 Disgust Avoidance Questionnaire: I distract myself to avoid thinking about things that disgust me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.2 1.4 7 ▁▁▁▃▁▅▇▃
DAQ_25 Disgust Avoidance Questionnaire: To avoid thinking about things that revolt me, I force myself to think about something else. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.3 1.3 7 ▁▁▁▂▁▅▇▂

Scale: fear_of_covid-19

Overview

Reliability: Cronbach’s α [95% CI] = 0.92 [0.91;0.93].

Missing: 0.

Likert plot of scale fear_of_covid-19 items

Likert plot of scale fear_of_covid-19 items

Distribution of scale fear_of_covid-19

Distribution of scale fear_of_covid-19

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.91 0.92 0.93
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.92 0.93 0.92 0.64 13 0.01 2 1.1 0.65
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
FCV19S_01 0.90 0.91 0.91 0.64 11 0.01 0.01 0.65
FCV19S_02 0.91 0.92 0.91 0.65 11 0.01 0.00 0.65
FCV19S_03 0.91 0.91 0.90 0.64 10 0.01 0.00 0.65
FCV19S_04 0.90 0.91 0.91 0.63 10 0.01 0.01 0.65
FCV19S_05 0.91 0.92 0.91 0.65 11 0.01 0.01 0.65
FCV19S_06 0.92 0.92 0.91 0.66 12 0.01 0.00 0.65
FCV19S_07 0.90 0.91 0.90 0.63 10 0.01 0.00 0.64
Item statistics
n raw.r std.r r.cor r.drop mean sd
FCV19S_01 336 0.84 0.84 0.80 0.78 2.1 1.33
FCV19S_02 336 0.83 0.81 0.77 0.75 2.5 1.64
FCV19S_03 336 0.83 0.85 0.83 0.77 1.8 1.09
FCV19S_04 336 0.86 0.85 0.82 0.80 2.1 1.42
FCV19S_05 336 0.84 0.82 0.79 0.77 2.4 1.57
FCV19S_06 336 0.74 0.78 0.74 0.69 1.5 0.82
FCV19S_07 336 0.86 0.87 0.85 0.81 1.9 1.27
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
FCV19S_01 0.44 0.33 0.07 0.07 0.07 0.02 0.00 0
FCV19S_02 0.36 0.29 0.08 0.10 0.12 0.04 0.02 0
FCV19S_03 0.52 0.33 0.07 0.04 0.03 0.01 0.00 0
FCV19S_04 0.46 0.28 0.10 0.07 0.06 0.03 0.01 0
FCV19S_05 0.39 0.31 0.07 0.06 0.13 0.04 0.00 0
FCV19S_06 0.59 0.33 0.04 0.02 0.01 0.00 0.00 0
FCV19S_07 0.52 0.29 0.07 0.04 0.05 0.02 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
FCV19S_01 Fear of COVID-19 Scale: I am most afraid of coronavirus-19 haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.1 1.33 7 ▇▆▂▁▁▁▁▁
FCV19S_02 Fear of COVID-19 Scale: It makes me uncomfortable to think about coronavirus-19. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.5 1.64 7 ▇▆▂▂▁▂▁▁
FCV19S_03 Fear of COVID-19 Scale: My hands become clammy when I think about coronavirus-19. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 1 6 1.8 1.09 7 ▇▅▁▁▁▁▁▁
FCV19S_04 Fear of COVID-19 Scale: I am afraid of losing my life because of coronavirus-19. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.1 1.42 7 ▇▅▂▁▁▁▁▁
FCV19S_05 Fear of COVID-19 Scale: When watching news and stories about coronavirus-19 on social media, I become nervous or anxious. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.4 1.57 7 ▇▆▂▁▁▂▁▁
FCV19S_06 Fear of COVID-19 Scale: I cannot sleep because I’m worrying about getting coronavirus-19. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 1 6 1.5 0.82 7 ▇▅▁▁▁▁▁▁
FCV19S_07 Fear of COVID-19 Scale: My heart races or palpitates when I think about getting coronavirus-19. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 1 7 1.9 1.27 7 ▇▅▁▁▁▁▁▁

Scale: agreeableness_forgiveness

Overview

Reliability: Cronbach’s α [95% CI] = 0.81 [0.77;0.85].

Missing: 0.

Likert plot of scale agreeableness_forgiveness items

Likert plot of scale agreeableness_forgiveness items

Distribution of scale agreeableness_forgiveness

Distribution of scale agreeableness_forgiveness

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.77 0.81 0.85
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.81 0.81 0.68 0.68 4.3 0.02 4.2 1.5 0.68
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_01 0.72 0.68 0.46 0.68 2.1 NA 0 0.68
HEXACO_09 0.64 0.68 0.46 0.68 2.1 NA 0 0.68
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_01 336 0.92 0.92 0.76 0.68 4.1 1.7
HEXACO_09 336 0.91 0.92 0.76 0.68 4.2 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_01 0.06 0.14 0.21 0.12 0.21 0.20 0.06 0
HEXACO_09 0.05 0.12 0.16 0.18 0.27 0.16 0.06 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_01 HEXACO-60: I rarely hold a grudge, even against people who have badly wronged me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.1 1.7 7 ▂▅▇▅▁▇▇▂
HEXACO_09 HEXACO-60: My attitude toward people who have treated me badly is “forgive and forget”. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.2 1.6 7 ▂▃▅▅▁▇▅▂

Scale: honesty-humility_sincerity

Overview

Reliability: Cronbach’s α [95% CI] = 0.7 [0.64;0.75].

Missing: 0.

Likert plot of scale honesty-humility_sincerity items

Likert plot of scale honesty-humility_sincerity items

Distribution of scale honesty-humility_sincerity

Distribution of scale honesty-humility_sincerity

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.64 0.7 0.75
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.7 0.7 0.61 0.44 2.3 0.03 4.9 1.3 0.44
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_02 0.58 0.58 0.41 0.41 1.4 0.05 NA 0.41
HEXACO_10_R 0.61 0.61 0.44 0.44 1.6 0.04 NA 0.44
HEXACO_18 0.62 0.63 0.46 0.46 1.7 0.04 NA 0.46
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_02 336 0.81 0.80 0.64 0.53 4.6 1.8
HEXACO_10_R 336 0.77 0.79 0.61 0.51 5.0 1.5
HEXACO_18 336 0.78 0.78 0.60 0.50 5.1 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_02 0.04 0.12 0.15 0.11 0.18 0.26 0.15 0
HEXACO_10_R 0.01 0.07 0.15 0.10 0.19 0.33 0.17 0
HEXACO_18 0.04 0.07 0.09 0.10 0.12 0.40 0.17 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_02 HEXACO-60: I wouldn’t use flattery to get a raise or promotion at work, even if I thought it would succeed. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.6 1.8 7 ▁▃▅▃▁▆▇▅
HEXACO_10_R HEXACO-60: If I want something from someone, I will laugh at that person’s worst jokes. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 5.0 1.5 7 ▁▂▃▂▁▅▇▅
HEXACO_18 HEXACO-60: I wouldn’t pretend to like someone just to get that person to do favors for me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.1 1.7 7 ▁▂▂▂▁▂▇▃

Scale: agreeableness_gentleness

Overview

Reliability: Cronbach’s α [95% CI] = 0.63 [0.56;0.7].

Missing: 0.

Likert plot of scale agreeableness_gentleness items

Likert plot of scale agreeableness_gentleness items

Distribution of scale agreeableness_gentleness

Distribution of scale agreeableness_gentleness

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.56 0.63 0.7
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.63 0.63 0.54 0.36 1.7 0.04 4.8 1.1 0.36
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_03_R 0.61 0.61 0.44 0.44 1.56 0.04 NA 0.44
HEXACO_11 0.53 0.53 0.36 0.36 1.13 0.05 NA 0.36
HEXACO_17 0.44 0.44 0.28 0.28 0.78 0.06 NA 0.28
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_03_R 336 0.74 0.72 0.48 0.38 5.2 1.5
HEXACO_11 336 0.75 0.76 0.56 0.43 4.7 1.4
HEXACO_17 336 0.79 0.79 0.63 0.50 4.4 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_03_R 0.01 0.06 0.13 0.11 0.14 0.38 0.18 0
HEXACO_11 0.02 0.07 0.12 0.15 0.30 0.28 0.06 0
HEXACO_17 0.01 0.09 0.21 0.17 0.27 0.21 0.04 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_03_R HEXACO-60: People sometimes tell me that I am too critical of others. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.2 1.5 7 ▁▁▃▂▁▃▇▃
HEXACO_11 HEXACO-60: I tend to be lenient in judging other people. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.7 1.4 7 ▁▂▃▅▁▇▇▂
HEXACO_17 HEXACO-60: Even when people make a lot of mistakes, I rarely say anything negative. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.4 1.4 7 ▁▃▆▅▁▇▆▁

Scale: honesty-humility_fairness_(hexaco)

Overview

Reliability: Cronbach’s α [95% CI] = 0.82 [0.79;0.85].

Missing: 0.

Likert plot of scale honesty-humility_fairness_(hexaco) items

Likert plot of scale honesty-humility_fairness_(hexaco) items

Distribution of scale honesty-humility_fairness_(hexaco)

Distribution of scale honesty-humility_fairness_(hexaco)

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.79 0.82 0.85
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.82 0.82 0.77 0.6 4.6 0.02 5.4 1.5 0.55
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_04_R 0.70 0.71 0.55 0.55 2.4 0.03 NA 0.55
HEXACO_12 0.83 0.84 0.72 0.72 5.1 0.02 NA 0.72
HEXACO_20_R 0.70 0.71 0.55 0.55 2.5 0.03 NA 0.55
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_04_R 336 0.90 0.88 0.81 0.73 5.1 2.0
HEXACO_12 336 0.79 0.81 0.64 0.59 5.3 1.6
HEXACO_20_R 336 0.88 0.88 0.80 0.73 5.7 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_04_R 0.07 0.08 0.11 0.10 0.05 0.22 0.38 0
HEXACO_12 0.02 0.06 0.08 0.10 0.16 0.35 0.24 0
HEXACO_20_R 0.01 0.07 0.09 0.07 0.05 0.25 0.46 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_04_R HEXACO-60: If I knew that I could never get caught, I would be willing to steal a million dollars. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.1 2.0 7 ▂▂▂▂▁▁▅▇
HEXACO_12 HEXACO-60: I would never accept a bribe, even if it were very large. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.3 1.6 7 ▁▁▂▂▁▃▇▆
HEXACO_20_R HEXACO-60: I’d be tempted to use counterfeit money, if I were sure I could get away with it. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.7 1.7 7 ▁▁▂▁▁▁▅▇

Scale: agreeableness_flexibility

Overview

Reliability: Cronbach’s α [95% CI] = 0.53 [0.45;0.62].

Missing: 0.

Likert plot of scale agreeableness_flexibility items

Likert plot of scale agreeableness_flexibility items

Distribution of scale agreeableness_flexibility

Distribution of scale agreeableness_flexibility

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.45 0.53 0.62
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.53 0.53 0.44 0.27 1.1 0.04 4.5 1.1 0.24
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_05_R 0.39 0.39 0.24 0.24 0.64 0.07 NA 0.24
HEXACO_13 0.55 0.55 0.38 0.38 1.22 0.05 NA 0.38
HEXACO_19_R 0.32 0.33 0.20 0.20 0.49 0.07 NA 0.20
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_05_R 336 0.77 0.73 0.51 0.37 4.3 1.7
HEXACO_13 336 0.62 0.67 0.36 0.26 4.6 1.3
HEXACO_19_R 336 0.75 0.75 0.56 0.41 4.8 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_05_R 0.03 0.14 0.25 0.11 0.12 0.26 0.08 0
HEXACO_13 0.02 0.05 0.15 0.20 0.30 0.24 0.03 0
HEXACO_19_R 0.01 0.07 0.17 0.13 0.20 0.32 0.11 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_05_R HEXACO-60: People sometimes tell me that I’m too stubborn. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 4 7 4.3 1.7 7 ▁▅▇▃▁▃▇▂
HEXACO_13 HEXACO-60: I am usually quite flexible in my opinions when people disagree with me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.6 1.3 7 ▁▂▃▅▁▇▆▁
HEXACO_19_R HEXACO-60: When people tell me that I’m wrong, my first reaction is to argue with them. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.8 1.5 7 ▁▂▅▃▁▅▇▃

Scale: honesty-humility_greed-avoidance

Overview

Reliability: Cronbach’s α [95% CI] = 0.52 [0.42;0.62].

Missing: 0.

Likert plot of scale honesty-humility_greed-avoidance items

Likert plot of scale honesty-humility_greed-avoidance items

Distribution of scale honesty-humility_greed-avoidance

Distribution of scale honesty-humility_greed-avoidance

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.42 0.52 0.62
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.52 0.52 0.35 0.35 1.1 0.05 4.5 1.4 0.35
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_06 0.35 0.35 0.12 0.35 0.54 NA 0 0.35
HEXACO_14_R 0.35 0.35 0.12 0.35 0.54 NA 0 0.35
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_06 336 0.82 0.82 0.49 0.35 4.1 1.7
HEXACO_14_R 336 0.82 0.82 0.49 0.35 4.8 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_06 0.05 0.16 0.20 0.13 0.20 0.20 0.06 0
HEXACO_14_R 0.02 0.08 0.15 0.15 0.14 0.29 0.17 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_06 HEXACO-60: Having a lot of money is not especially important to me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.1 1.7 7 ▂▆▇▆▁▇▇▂
HEXACO_14_R HEXACO-60: I would get a lot of pleasure from owning expensive luxury goods. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.8 1.7 7 ▁▂▅▅▁▃▇▅

Scale: agreeableness_patience

Overview

Reliability: Cronbach’s α [95% CI] = 0.67 [0.6;0.74].

Missing: 0.

Likert plot of scale agreeableness_patience items

Likert plot of scale agreeableness_patience items

Distribution of scale agreeableness_patience

Distribution of scale agreeableness_patience

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.6 0.67 0.74
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.67 0.67 0.51 0.51 2 0.04 5.3 1.2 0.51
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_07_R 0.52 0.51 0.26 0.51 1 NA 0 0.51
HEXACO_15 0.50 0.51 0.26 0.51 1 NA 0 0.51
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_07_R 336 0.87 0.87 0.62 0.51 5.6 1.4
HEXACO_15 336 0.86 0.87 0.62 0.51 5.0 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_07_R 0.00 0.02 0.10 0.08 0.13 0.39 0.28 0
HEXACO_15 0.01 0.06 0.08 0.17 0.25 0.34 0.09 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_07_R HEXACO-60: People think of me as someone who has a quick temper. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.6 1.4 7 ▁▁▂▂▁▃▇▆
HEXACO_15 HEXACO-60: Most people tend to get angry more quickly than I do. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 5.0 1.4 7 ▁▁▂▃▁▆▇▂

Scale: honesty-humility_modesty

Overview

Reliability: Cronbach’s α [95% CI] = 0.78 [0.73;0.83].

Missing: 0.

Likert plot of scale honesty-humility_modesty items

Likert plot of scale honesty-humility_modesty items

Distribution of scale honesty-humility_modesty

Distribution of scale honesty-humility_modesty

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.73 0.78 0.83
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.78 0.78 0.64 0.64 3.6 0.02 5.6 1.3 0.64
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_08_R 0.60 0.64 0.41 0.64 1.8 NA 0 0.64
HEXACO_16_R 0.68 0.64 0.41 0.64 1.8 NA 0 0.64
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_08_R 336 0.90 0.91 0.73 0.64 5.6 1.4
HEXACO_16_R 336 0.91 0.91 0.73 0.64 5.6 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_08_R 0.01 0.04 0.04 0.14 0.10 0.38 0.29 0
HEXACO_16_R 0.01 0.03 0.08 0.11 0.12 0.31 0.34 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_08_R HEXACO-60: I think that I am entitled to more respect than the average person is. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.6 1.4 7 ▁▁▁▃▁▂▇▆
HEXACO_16_R HEXACO-60: I want people to know that I am an important person of high status. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.6 1.5 7 ▁▁▂▂▁▃▇▇

Scale: conscientiousness_diligence

Overview

Reliability: Cronbach’s α [95% CI] = 0.56 [0.46;0.65].

Missing: 0.

Likert plot of scale conscientiousness_diligence items

Likert plot of scale conscientiousness_diligence items

Distribution of scale conscientiousness_diligence

Distribution of scale conscientiousness_diligence

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.46 0.56 0.65
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.56 0.56 0.39 0.39 1.3 0.05 5.4 1.1 0.39
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_22 0.33 0.39 0.15 0.39 0.64 NA 0 0.39
HEXACO_26_R 0.47 0.39 0.15 0.39 0.64 NA 0 0.39
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_22 336 0.80 0.83 0.52 0.39 5.4 1.2
HEXACO_26_R 336 0.87 0.83 0.52 0.39 5.4 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_22 0.01 0.02 0.05 0.1 0.26 0.42 0.15 0
HEXACO_26_R 0.00 0.04 0.11 0.1 0.15 0.38 0.23 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_22 HEXACO-60: I often push myself very hard when trying to achieve a goal. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.4 1.2 7 ▁▁▁▂▁▅▇▃
HEXACO_26_R HEXACO-60: I do only the minimum amount of work needed to get by. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 2 6 7 5.4 1.4 7 ▁▂▁▂▃▁▇▅

Scale: conscientiousness_organization

Overview

Reliability: Cronbach’s α [95% CI] = 0.71 [0.65;0.77].

Missing: 0.

Likert plot of scale conscientiousness_organization items

Likert plot of scale conscientiousness_organization items

Distribution of scale conscientiousness_organization

Distribution of scale conscientiousness_organization

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.65 0.71 0.77
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.71 0.72 0.56 0.56 2.5 0.03 5.1 1.4 0.56
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_21 0.49 0.56 0.31 0.56 1.3 NA 0 0.56
HEXACO_25_R 0.63 0.56 0.31 0.56 1.3 NA 0 0.56
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_21 336 0.87 0.88 0.66 0.56 5.2 1.4
HEXACO_25_R 336 0.90 0.88 0.66 0.56 5.0 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_21 0.01 0.05 0.09 0.09 0.25 0.33 0.18 0
HEXACO_25_R 0.01 0.07 0.18 0.09 0.14 0.32 0.19 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_21 HEXACO-60: I plan ahead and organize things, to avoid scrambling at the last minute. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.2 1.4 7 ▁▁▂▂▁▆▇▅
HEXACO_25_R HEXACO-60: When working, I sometimes have difficulties due to being disorganized. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.0 1.6 7 ▁▂▅▂▁▃▇▅

Scale: conscientiousness_perfectionism

Overview

Reliability: Cronbach’s α [95% CI] = 0.47 [0.37;0.56].

Missing: 0.

Likert plot of scale conscientiousness_perfectionism items

Likert plot of scale conscientiousness_perfectionism items

Distribution of scale conscientiousness_perfectionism

Distribution of scale conscientiousness_perfectionism

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.37 0.47 0.56
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.47 0.49 0.41 0.25 0.98 0.05 5 0.97 0.25
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_23_R 0.24 0.26 0.15 0.15 0.36 0.07 NA 0.15
HEXACO_27 0.39 0.40 0.25 0.25 0.66 0.06 NA 0.25
HEXACO_29 0.50 0.51 0.34 0.34 1.02 0.05 NA 0.34
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_23_R 336 0.72 0.75 0.55 0.37 5.6 1.3
HEXACO_27 336 0.61 0.70 0.45 0.29 5.5 1.1
HEXACO_29 336 0.76 0.66 0.35 0.25 3.9 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_23_R 0.00 0.04 0.06 0.05 0.18 0.42 0.26 0
HEXACO_27 0.00 0.01 0.05 0.09 0.27 0.41 0.18 0
HEXACO_29 0.08 0.21 0.13 0.14 0.26 0.15 0.04 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_23_R HEXACO-60: When working on something, I don’t pay much attention to small details. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.6 1.3 7 ▁▁▁▁▁▃▇▅
HEXACO_27 HEXACO-60: I always try to be accurate in my work, even at the expense of time. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 2 6 7 5.5 1.1 7 ▁▁▁▂▅▁▇▃
HEXACO_29 HEXACO-60: People often call me a perfectionist. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.9 1.7 7 ▂▆▃▅▁▇▅▂

Scale: conscientiousness_prudence

Overview

Reliability: Cronbach’s α [95% CI] = 0.73 [0.68;0.78].

Missing: 0.

Likert plot of scale conscientiousness_prudence items

Likert plot of scale conscientiousness_prudence items

Distribution of scale conscientiousness_prudence

Distribution of scale conscientiousness_prudence

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.68 0.73 0.78
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.73 0.73 0.67 0.48 2.7 0.03 5.1 1.2 0.55
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_24_R 0.50 0.50 0.33 0.33 0.99 0.05 NA 0.33
HEXACO_28_R 0.71 0.71 0.55 0.55 2.40 0.03 NA 0.55
HEXACO_30_R 0.71 0.71 0.55 0.55 2.48 0.03 NA 0.55
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_24_R 336 0.87 0.87 0.78 0.67 5.0 1.5
HEXACO_28_R 336 0.77 0.78 0.60 0.50 5.4 1.4
HEXACO_30_R 336 0.78 0.78 0.59 0.50 4.9 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_24_R 0.01 0.05 0.12 0.16 0.19 0.32 0.15 0
HEXACO_28_R 0.00 0.02 0.14 0.08 0.15 0.38 0.24 0
HEXACO_30_R 0.00 0.06 0.16 0.17 0.18 0.32 0.12 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_24_R HEXACO-60: I make decisions based on the feeling of the moment rather than on careful thought. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 5.0 1.5 7 ▁▂▃▅▁▅▇▃
HEXACO_28_R HEXACO-60: I make a lot of mistakes because I don’t think before I act. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 2 6 7 5.4 1.4 7 ▁▃▁▂▃▁▇▅
HEXACO_30_R HEXACO-60: I prefer to do whatever comes to mind, rather than stick to a plan. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 2 5 7 4.9 1.4 7 ▂▃▁▅▅▁▇▃

Scale: authoritarianism_authoritarian_aggression

Overview

Reliability: Cronbach’s α [95% CI] = 0.77 [0.73;0.81].

Missing: 0.

Likert plot of scale authoritarianism_authoritarian_aggression items

Likert plot of scale authoritarianism_authoritarian_aggression items

Distribution of scale authoritarianism_authoritarian_aggression

Distribution of scale authoritarianism_authoritarian_aggression

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.73 0.77 0.81
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.77 0.76 0.72 0.45 3.2 0.02 3.7 1.2 0.43
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
KSA3_01 0.66 0.66 0.57 0.39 1.9 0.03 0.00 0.41
KSA3_02 0.72 0.72 0.64 0.47 2.6 0.03 0.01 0.42
KSA3_03 0.69 0.69 0.61 0.43 2.2 0.03 0.01 0.42
KSA3_04 0.76 0.76 0.68 0.51 3.1 0.02 0.00 0.54
Item statistics
n raw.r std.r r.cor r.drop mean sd
KSA3_01 336 0.83 0.82 0.76 0.66 3.1 1.6
KSA3_02 336 0.76 0.75 0.62 0.54 3.6 1.6
KSA3_03 336 0.79 0.79 0.69 0.60 3.2 1.6
KSA3_04 336 0.69 0.70 0.53 0.47 4.9 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
KSA3_01 0.16 0.29 0.15 0.18 0.12 0.09 0.01 0
KSA3_02 0.10 0.22 0.15 0.18 0.22 0.12 0.02 0
KSA3_03 0.18 0.24 0.17 0.16 0.15 0.09 0.01 0
KSA3_04 0.03 0.07 0.05 0.17 0.31 0.28 0.09 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
KSA3_01 Authoritarianism Short Scale: We should take strong action against misfits and slackers in society. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.6 7 ▅▇▃▅▁▃▂▁
KSA3_02 Authoritarianism Short Scale: Troublemakers should be made to feel that they are not welcome in society. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.6 1.6 7 ▃▇▆▆▁▇▅▁
KSA3_03 Authoritarianism Short Scale: Rules in society should be enforced without pity. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.2 1.6 7 ▆▇▆▅▁▅▃▁
KSA3_04 Authoritarianism Short Scale: We need strong leaders so that we can live safely in society. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.9 1.5 7 ▁▂▁▅▁▇▇▂

Scale: authoritarianism_authoritarian_submissiveness

Overview

Reliability: Cronbach’s α [95% CI] = 0.82 [0.78;0.86].

Missing: 0.

Likert plot of scale authoritarianism_authoritarian_submissiveness items

Likert plot of scale authoritarianism_authoritarian_submissiveness items

Distribution of scale authoritarianism_authoritarian_submissiveness

Distribution of scale authoritarianism_authoritarian_submissiveness

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.78 0.82 0.86
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.82 0.82 0.69 0.69 4.5 0.02 2.8 1.3 0.69
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
KSA3_05 0.67 0.69 0.48 0.69 2.2 NA 0 0.69
KSA3_06 0.71 0.69 0.48 0.69 2.2 NA 0 0.69
Item statistics
n raw.r std.r r.cor r.drop mean sd
KSA3_05 336 0.92 0.92 0.76 0.69 3.0 1.4
KSA3_06 336 0.92 0.92 0.76 0.69 2.6 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
KSA3_05 0.15 0.31 0.19 0.20 0.10 0.05 0.00 0
KSA3_06 0.28 0.31 0.14 0.15 0.09 0.03 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
KSA3_05 Authoritarianism Short Scale: People should leave important decisions in society to their leaders. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.0 1.4 7 ▃▇▅▅▁▂▁▁
KSA3_06 Authoritarianism Short Scale: We should be grateful for leaders telling us exactly what to do. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.6 1.5 7 ▇▇▃▃▁▂▁▁

Scale: authoritarianism_conventionalism

Overview

Reliability: Cronbach’s α [95% CI] = 0.71 [0.66;0.77].

Missing: 0.

Likert plot of scale authoritarianism_conventionalism items

Likert plot of scale authoritarianism_conventionalism items

Distribution of scale authoritarianism_conventionalism

Distribution of scale authoritarianism_conventionalism

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.66 0.71 0.77
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.71 0.71 0.63 0.45 2.5 0.03 3.9 1.2 0.42
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
KSA3_07 0.71 0.71 0.55 0.55 2.5 0.03 NA 0.55
KSA3_08 0.59 0.59 0.42 0.42 1.4 0.04 NA 0.42
KSA3_09 0.55 0.55 0.38 0.38 1.2 0.05 NA 0.38
Item statistics
n raw.r std.r r.cor r.drop mean sd
KSA3_07 336 0.75 0.75 0.53 0.45 4.7 1.4
KSA3_08 336 0.81 0.81 0.67 0.55 3.3 1.5
KSA3_09 336 0.82 0.82 0.70 0.58 3.6 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
KSA3_07 0.02 0.07 0.08 0.24 0.25 0.25 0.09 0
KSA3_08 0.10 0.25 0.21 0.20 0.15 0.08 0.01 0
KSA3_09 0.05 0.23 0.20 0.25 0.16 0.09 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
KSA3_07 Authoritarianism Short Scale: Traditions should definitely be carried on and kept alive. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.7 1.4 7 ▁▂▂▇▁▇▇▃
KSA3_08 Authoritarianism Short Scale: Well-established behavior should not be questioned. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.5 7 ▃▇▇▆▁▅▂▁
KSA3_09 Authoritarianism Short Scale: It’s always best to do things in the usual way. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.6 1.4 7 ▂▇▆▇▁▅▃▁

Scale: harm

Overview

Reliability: Cronbach’s α [95% CI] = 0.51 [0.41;0.62].

Missing: 0.

Likert plot of scale harm items

Likert plot of scale harm items

Distribution of scale harm

Distribution of scale harm

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.41 0.51 0.62
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.51 0.52 0.35 0.35 1.1 0.05 5.9 0.95 0.35
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
MFQ_01 0.30 0.35 0.12 0.35 0.54 NA 0 0.35
MFQ_07 0.41 0.35 0.12 0.35 0.54 NA 0 0.35
Item statistics
n raw.r std.r r.cor r.drop mean sd
MFQ_01 336 0.79 0.82 0.49 0.35 5.8 1.1
MFQ_07 336 0.85 0.82 0.49 0.35 6.0 1.2
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
MFQ_01 0.00 0.01 0.02 0.07 0.20 0.41 0.29 0
MFQ_07 0.01 0.01 0.03 0.07 0.13 0.32 0.44 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
MFQ_01 Moral Foundations Questionnaire: Compassion for those who are suffering is the most crucial virtue. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 2 6 7 5.8 1.1 7 ▁▁▁▁▃▁▇▆
MFQ_07 Moral Foundations Questionnaire: One of the worst things a person could do is hurt a defenseless animal. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 6.0 1.2 7 ▁▁▁▁▁▂▆▇

Scale: fairness

Overview

Reliability: Cronbach’s α [95% CI] = 0.44 [0.32;0.56].

Missing: 0.

Likert plot of scale fairness items

Likert plot of scale fairness items

Distribution of scale fairness

Distribution of scale fairness

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.32 0.44 0.56
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.44 0.45 0.29 0.29 0.81 0.06 5.6 1 0.29
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
MFQ_02 0.25 0.29 0.08 0.29 0.4 NA 0 0.29
MFQ_08 0.34 0.29 0.08 0.29 0.4 NA 0 0.29
Item statistics
n raw.r std.r r.cor r.drop mean sd
MFQ_02 336 0.77 0.8 0.43 0.29 5.9 1.2
MFQ_08 336 0.84 0.8 0.43 0.29 5.2 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
MFQ_02 0.00 0.02 0.04 0.05 0.12 0.41 0.35 0
MFQ_08 0.01 0.04 0.06 0.16 0.26 0.30 0.17 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
MFQ_02 Moral Foundations Questionnaire: When the government makes laws, the number one principle should be ensuring that everyone is treated fairly. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 2 6 7 5.9 1.2 7 ▁▁▁▁▂▁▇▇
MFQ_08 Moral Foundations Questionnaire: Justice is the most important requirement for a society. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 5.2 1.4 7 ▁▁▂▅▁▇▇▅

Scale: ingroup

Overview

Reliability: Cronbach’s α [95% CI] = 0.57 [0.48;0.66].

Missing: 0.

Likert plot of scale ingroup items

Likert plot of scale ingroup items

Distribution of scale ingroup

Distribution of scale ingroup

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.48 0.57 0.66
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.57 0.57 0.4 0.4 1.4 0.05 4 1.5 0.4
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
MFQ_03 0.45 0.4 0.16 0.4 0.68 NA 0 0.4
MFQ_09 0.36 0.4 0.16 0.4 0.68 NA 0 0.4
Item statistics
n raw.r std.r r.cor r.drop mean sd
MFQ_03 336 0.86 0.84 0.53 0.4 4.2 1.9
MFQ_09 336 0.82 0.84 0.53 0.4 3.7 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
MFQ_03 0.1 0.15 0.09 0.12 0.20 0.22 0.10 0
MFQ_09 0.1 0.21 0.15 0.19 0.16 0.14 0.04 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
MFQ_03 Moral Foundations Questionnaire: I am proud of my country’s history. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.2 1.9 7 ▃▆▃▅▁▇▇▃
MFQ_09 Moral Foundations Questionnaire: People should be loyal to their family members, even when they have done something wrong. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.7 1.7 7 ▃▇▆▇▁▆▅▂

Scale: authority

Overview

Reliability: Cronbach’s α [95% CI] = 0.72 [0.67;0.78].

Missing: 0.

Likert plot of scale authority items

Likert plot of scale authority items

Distribution of scale authority

Distribution of scale authority

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.67 0.72 0.78
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.72 0.73 0.57 0.57 2.7 0.03 4.6 1.5 0.57
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
MFQ_04 0.50 0.57 0.33 0.57 1.3 NA 0 0.57
MFQ_10 0.66 0.57 0.33 0.57 1.3 NA 0 0.57
Item statistics
n raw.r std.r r.cor r.drop mean sd
MFQ_04 336 0.87 0.89 0.67 0.57 5.0 1.6
MFQ_10 336 0.90 0.89 0.67 0.57 4.3 1.8
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
MFQ_04 0.04 0.07 0.07 0.12 0.27 0.29 0.15 0
MFQ_10 0.07 0.16 0.10 0.15 0.22 0.20 0.10 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
MFQ_04 Moral Foundations Questionnaire: Respect for authority is something all children need to learn. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 5.0 1.6 7 ▁▂▂▃▁▇▇▅
MFQ_10 Moral Foundations Questionnaire: Men and women each have different roles to play in society. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.3 1.8 7 ▃▆▃▆▁▇▇▃

Scale: purity

Overview

Reliability: Cronbach’s α [95% CI] = 0.69 [0.63;0.76].

Missing: 0.

Likert plot of scale purity items

Likert plot of scale purity items

Distribution of scale purity

Distribution of scale purity

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.63 0.69 0.76
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.69 0.69 0.53 0.53 2.3 0.03 4.5 1.5 0.53
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
MFQ_05 0.51 0.53 0.28 0.53 1.1 NA 0 0.53
MFQ_11 0.55 0.53 0.28 0.53 1.1 NA 0 0.53
Item statistics
n raw.r std.r r.cor r.drop mean sd
MFQ_05 336 0.87 0.87 0.64 0.53 4.7 1.7
MFQ_11 336 0.88 0.87 0.64 0.53 4.4 1.8
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
MFQ_05 0.04 0.11 0.08 0.19 0.16 0.29 0.12 0
MFQ_11 0.06 0.15 0.08 0.21 0.16 0.24 0.10 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
MFQ_05 Moral Foundations Questionnaire: People should not do things that are disgusting, even if no one is harmed. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.7 1.7 7 ▁▃▂▅▁▅▇▃
MFQ_11 Moral Foundations Questionnaire: I would call some acts wrong on the grounds that they are unnatural. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.4 1.8 7 ▂▅▃▇▁▆▇▃

Scale: limits_to_growth

Overview

Reliability: Cronbach’s α [95% CI] = 0.47 [0.35;0.58].

Missing: 0.

Likert plot of scale limits_to_growth items

Likert plot of scale limits_to_growth items

Distribution of scale limits_to_growth

Distribution of scale limits_to_growth

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.35 0.47 0.58
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.47 0.47 0.31 0.31 0.88 0.06 3.6 1.4 0.31
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
NEPS_01 0.33 0.31 0.09 0.31 0.44 NA 0 0.31
NEPS_06_R 0.28 0.31 0.09 0.31 0.44 NA 0 0.31
Item statistics
n raw.r std.r r.cor r.drop mean sd
NEPS_01 336 0.82 0.81 0.45 0.31 4.1 1.8
NEPS_06_R 336 0.79 0.81 0.45 0.31 3.1 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
NEPS_01 0.09 0.13 0.12 0.21 0.18 0.15 0.10 0
NEPS_06_R 0.13 0.30 0.22 0.13 0.07 0.11 0.03 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
NEPS_01 New Ecological Paradigm Scale: We are approaching the limit of the number of people the earth can support haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.1 1.8 7 ▃▅▅▇▁▇▆▃
NEPS_06_R New Ecological Paradigm Scale: The earth has plenty of natural resources if we just learn how to develop them haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 3 7 3.1 1.6 7 ▃▇▆▃▁▂▃▁

Scale: antiexemptionalism

Overview

Reliability: Cronbach’s α [95% CI] = 0.15 [0.01;0.29].

Missing: 0.

Likert plot of scale antiexemptionalism items

Likert plot of scale antiexemptionalism items

Distribution of scale antiexemptionalism

Distribution of scale antiexemptionalism

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.01 0.15 0.29
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.15 0.19 0.11 0.11 0.24 0.07 5.1 0.96 0.11
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
NEPS_04_R 0.22 0.11 0.01 0.11 0.12 NA 0 0.11
NEPS_09 0.05 0.11 0.01 0.11 0.12 NA 0 0.11
Item statistics
n raw.r std.r r.cor r.drop mean sd
NEPS_04_R 336 0.91 0.74 0.24 0.11 4.0 1.67
NEPS_09 336 0.50 0.74 0.24 0.11 6.2 0.79
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
NEPS_04_R 0.06 0.15 0.21 0.23 0.12 0.17 0.08 0
NEPS_09 0.00 0.00 0.01 0.02 0.10 0.49 0.38 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
NEPS_04_R New Ecological Paradigm Scale: Human ingenuity will insure that we do NOT make the earth unlivable haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 4 7 4.0 1.67 7 ▂▅▇▇▁▅▆▃
NEPS_09 New Ecological Paradigm Scale: Despite our special abilities humans are still subject to the laws of nature haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 2 6 7 6.2 0.79 7 ▁▁▁▁▂▁▇▆

Scale: eco-crisis

Overview

Reliability: Cronbach’s α [95% CI] = 0.77 [0.73;0.82].

Missing: 0.

Likert plot of scale eco-crisis items

Likert plot of scale eco-crisis items

Distribution of scale eco-crisis

Distribution of scale eco-crisis

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.73 0.77 0.82
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.77 0.8 0.66 0.66 4 0.02 5.5 1.4 0.66
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
NEPS_05 0.48 0.66 0.44 0.66 2 NA 0 0.66
NEPS_10_R 0.93 0.66 0.44 0.66 2 NA 0 0.66
Item statistics
n raw.r std.r r.cor r.drop mean sd
NEPS_05 336 0.88 0.91 0.74 0.66 5.8 1.3
NEPS_10_R 336 0.94 0.91 0.74 0.66 5.2 1.8
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
NEPS_05 0.01 0.04 0.03 0.05 0.18 0.36 0.33 0
NEPS_10_R 0.06 0.06 0.08 0.11 0.10 0.28 0.32 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
NEPS_05 New Ecological Paradigm Scale: Humans are severely abusing the environment haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.8 1.3 7 ▁▁▁▁▁▅▇▇
NEPS_10_R New Ecological Paradigm Scale: The so-called “ecological crisis” facing humankind has been greatly exaggerated haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.2 1.8 7 ▂▂▂▃▁▂▇▇

Scale: human_domination

Overview

Reliability: Cronbach’s α [95% CI] = 0.57 [0.48;0.65].

Missing: 0.

Likert plot of scale human_domination items

Likert plot of scale human_domination items

Distribution of scale human_domination

Distribution of scale human_domination

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.48 0.57 0.65
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.57 0.6 0.42 0.42 1.5 0.04 5 1.5 0.42
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
NEPS_07 0.29 0.42 0.18 0.42 0.74 NA 0 0.42
NEPS_12_R 0.61 0.42 0.18 0.42 0.74 NA 0 0.42
Item statistics
n raw.r std.r r.cor r.drop mean sd
NEPS_07 336 0.78 0.84 0.55 0.42 5.7 1.4
NEPS_12_R 336 0.90 0.84 0.55 0.42 4.4 2.0
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
NEPS_07 0.01 0.04 0.02 0.10 0.15 0.35 0.33 0
NEPS_12_R 0.10 0.14 0.13 0.13 0.09 0.22 0.20 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
NEPS_07 New Ecological Paradigm Scale: Plants and animals have as much right as humans to exist haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.7 1.4 7 ▁▁▁▂▁▃▇▇
NEPS_12_R New Ecological Paradigm Scale: Humans were meant to rule over the rest of nature haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.4 2.0 7 ▃▅▅▅▁▃▇▇

Scale: balance_of_nature

Overview

Reliability: Cronbach’s α [95% CI] = 0.56 [0.47;0.66].

Missing: 0.

Likert plot of scale balance_of_nature items

Likert plot of scale balance_of_nature items

Distribution of scale balance_of_nature

Distribution of scale balance_of_nature

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.47 0.56 0.66
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.56 0.57 0.4 0.4 1.3 0.05 5 1.3 0.4
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
NEPS_08_R 0.45 0.4 0.16 0.4 0.66 NA 0 0.4
NEPS_13 0.35 0.4 0.16 0.4 0.66 NA 0 0.4
Item statistics
n raw.r std.r r.cor r.drop mean sd
NEPS_08_R 336 0.86 0.84 0.53 0.4 4.7 1.7
NEPS_13 336 0.81 0.84 0.53 0.4 5.2 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
NEPS_08_R 0.03 0.10 0.13 0.13 0.17 0.31 0.12 0
NEPS_13 0.02 0.04 0.07 0.11 0.23 0.37 0.16 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
NEPS_08_R New Ecological Paradigm Scale: The balance of nature is strong enough to cope with the impacts of modern industrial nations haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.7 1.7 7 ▁▂▃▃▁▅▇▃
NEPS_13 New Ecological Paradigm Scale: The balance of nature is very delicate and easily upset haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.2 1.5 7 ▁▁▂▂▁▅▇▃

Scale: obsessiveness-compulsiveness_hoarding

Overview

Reliability: Cronbach’s α [95% CI] = 0.83 [0.8;0.86].

Missing: 0.

Likert plot of scale obsessiveness-compulsiveness_hoarding items

Likert plot of scale obsessiveness-compulsiveness_hoarding items

Distribution of scale obsessiveness-compulsiveness_hoarding

Distribution of scale obsessiveness-compulsiveness_hoarding

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.8 0.83 0.86
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.83 0.83 0.77 0.63 5 0.02 3.2 1.5 0.62
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
OCIR_01 0.76 0.77 0.62 0.62 3.3 0.03 NA 0.62
OCIR_07 0.73 0.74 0.58 0.58 2.8 0.03 NA 0.58
OCIR_13 0.81 0.81 0.68 0.68 4.2 0.02 NA 0.68
Item statistics
n raw.r std.r r.cor r.drop mean sd
OCIR_01 336 0.86 0.87 0.77 0.70 2.7 1.7
OCIR_07 336 0.88 0.88 0.80 0.73 3.1 1.8
OCIR_13 336 0.86 0.85 0.72 0.66 3.7 1.9
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
OCIR_01 0.27 0.32 0.11 0.08 0.14 0.06 0.01 0
OCIR_07 0.23 0.25 0.13 0.10 0.21 0.07 0.02 0
OCIR_13 0.17 0.19 0.08 0.07 0.30 0.15 0.04 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
OCIR_01 Obsessive–Compulsive Inventory: I have saved up so many things that they get in the way. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.7 1.7 7 ▆▇▃▂▁▃▂▁
OCIR_07 Obsessive–Compulsive Inventory: I collect things I don’t need. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.8 7 ▇▇▅▃▁▆▂▁
OCIR_13 Obsessive–Compulsive Inventory: I avoid throwing things away because I am afraid I might need them later. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.7 1.9 7 ▅▅▂▂▁▇▃▁

Scale: obsessiveness-compulsiveness_checking

Overview

Reliability: Cronbach’s α [95% CI] = 0.88 [0.85;0.9].

Missing: 0.

Likert plot of scale obsessiveness-compulsiveness_checking items

Likert plot of scale obsessiveness-compulsiveness_checking items

Distribution of scale obsessiveness-compulsiveness_checking

Distribution of scale obsessiveness-compulsiveness_checking

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.85 0.88 0.9
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.88 0.88 0.83 0.7 7.1 0.01 3 1.6 0.68
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
OCIR_02 0.86 0.86 0.76 0.76 6.3 0.02 NA 0.76
OCIR_08 0.81 0.81 0.68 0.68 4.3 0.02 NA 0.68
OCIR_14 0.80 0.80 0.67 0.67 4.0 0.02 NA 0.67
Item statistics
n raw.r std.r r.cor r.drop mean sd
OCIR_02 336 0.88 0.87 0.76 0.72 3.4 1.9
OCIR_08 336 0.90 0.90 0.84 0.78 2.7 1.7
OCIR_14 336 0.91 0.91 0.85 0.79 2.8 1.9
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
OCIR_02 0.21 0.24 0.11 0.07 0.24 0.10 0.04 0
OCIR_08 0.29 0.35 0.09 0.06 0.11 0.08 0.02 0
OCIR_14 0.29 0.32 0.07 0.07 0.11 0.10 0.03 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
OCIR_02 Obsessive–Compulsive Inventory: I check things more often than necessary. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.4 1.9 7 ▇▇▃▂▁▇▃▁
OCIR_08 Obsessive–Compulsive Inventory: I repeatedly check doors, windows, drawers, etc. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.7 1.7 7 ▆▇▂▂▁▂▂▁
OCIR_14 Obsessive–Compulsive Inventory: I repeatedly check gas and water taps and light switches after turning them off. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.8 1.9 7 ▇▇▂▂▁▃▂▁

Scale: obsessiveness-compulsiveness_ordering

Overview

Reliability: Cronbach’s α [95% CI] = 0.88 [0.86;0.9].

Missing: 0.

Likert plot of scale obsessiveness-compulsiveness_ordering items

Likert plot of scale obsessiveness-compulsiveness_ordering items

Distribution of scale obsessiveness-compulsiveness_ordering

Distribution of scale obsessiveness-compulsiveness_ordering

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.86 0.88 0.9
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.88 0.88 0.83 0.71 7.4 0.01 3.3 1.6 0.71
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
OCIR_03 0.81 0.81 0.68 0.68 4.2 0.02 NA 0.68
OCIR_09 0.85 0.85 0.74 0.74 5.8 0.02 NA 0.74
OCIR_15 0.83 0.83 0.71 0.71 5.0 0.02 NA 0.71
Item statistics
n raw.r std.r r.cor r.drop mean sd
OCIR_03 336 0.91 0.91 0.85 0.80 3.1 1.7
OCIR_09 336 0.89 0.89 0.79 0.74 3.6 1.8
OCIR_15 336 0.90 0.90 0.82 0.77 3.2 1.8
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
OCIR_03 0.18 0.30 0.14 0.09 0.20 0.07 0.02 0
OCIR_09 0.15 0.21 0.13 0.12 0.22 0.12 0.04 0
OCIR_15 0.18 0.26 0.13 0.12 0.18 0.10 0.03 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
OCIR_03 Obsessive–Compulsive Inventory: I get upset if objects are not arranged properly. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.7 7 ▅▇▃▂▁▅▂▁
OCIR_09 Obsessive–Compulsive Inventory: I get upset if others change the way I have arranged things. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.6 1.8 7 ▆▇▅▅▁▇▅▂
OCIR_15 Obsessive–Compulsive Inventory: I need things to be arranged in a particular order. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.2 1.8 7 ▆▇▃▃▁▆▃▁

Scale: obsessiveness-compulsiveness_neutralizing

Overview

Reliability: Cronbach’s α [95% CI] = 0.72 [0.67;0.78].

Missing: 0.

Likert plot of scale obsessiveness-compulsiveness_neutralizing items

Likert plot of scale obsessiveness-compulsiveness_neutralizing items

Distribution of scale obsessiveness-compulsiveness_neutralizing

Distribution of scale obsessiveness-compulsiveness_neutralizing

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.67 0.72 0.78
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.72 0.74 0.67 0.48 2.8 0.03 2.4 1.3 0.5
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
OCIR_04 0.66 0.67 0.50 0.50 2 0.04 NA 0.50
OCIR_10 0.50 0.51 0.34 0.34 1 0.05 NA 0.34
OCIR_16 0.75 0.75 0.60 0.60 3 0.03 NA 0.60
Item statistics
n raw.r std.r r.cor r.drop mean sd
OCIR_04 336 0.80 0.80 0.65 0.53 2.4 1.6
OCIR_10 336 0.85 0.87 0.79 0.67 2.1 1.4
OCIR_16 336 0.78 0.76 0.55 0.46 2.6 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
OCIR_04 0.39 0.29 0.08 0.06 0.12 0.05 0.01 0
OCIR_10 0.45 0.32 0.06 0.06 0.07 0.03 0.01 0
OCIR_16 0.36 0.27 0.07 0.09 0.13 0.05 0.02 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
OCIR_04 Obsessive–Compulsive Inventory: I feel compelled to count while I am doing things. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.4 1.6 7 ▇▆▂▁▁▂▁▁
OCIR_10 Obsessive–Compulsive Inventory: I feel I have to repeat certain numbers. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.1 1.4 7 ▇▆▁▁▁▁▁▁
OCIR_16 Obsessive–Compulsive Inventory: I feel that there are good and bad numbers. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.6 1.7 7 ▇▆▂▂▁▃▁▁

Scale: obsessiveness-compulsiveness_washing

Overview

Reliability: Cronbach’s α [95% CI] = 0.84 [0.81;0.87].

Missing: 0.

Likert plot of scale obsessiveness-compulsiveness_washing items

Likert plot of scale obsessiveness-compulsiveness_washing items

Distribution of scale obsessiveness-compulsiveness_washing

Distribution of scale obsessiveness-compulsiveness_washing

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.81 0.84 0.87
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.84 0.84 0.78 0.64 5.3 0.01 2.6 1.5 0.63
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
OCIR_05 0.80 0.80 0.67 0.67 4.0 0.02 NA 0.67
OCIR_11 0.77 0.77 0.63 0.63 3.4 0.02 NA 0.63
OCIR_17 0.77 0.77 0.62 0.62 3.3 0.03 NA 0.62
Item statistics
n raw.r std.r r.cor r.drop mean sd
OCIR_05 336 0.86 0.86 0.75 0.69 2.6 1.7
OCIR_11 336 0.88 0.88 0.78 0.71 2.8 1.8
OCIR_17 336 0.87 0.88 0.78 0.72 2.5 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
OCIR_05 0.33 0.31 0.09 0.05 0.15 0.05 0.02 0
OCIR_11 0.33 0.27 0.07 0.06 0.17 0.08 0.02 0
OCIR_17 0.35 0.28 0.13 0.07 0.09 0.06 0.02 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
OCIR_05 Obsessive–Compulsive Inventory: I find it difficult to touch an object when I know it has been touched by strangers or certain people. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.6 1.7 7 ▇▇▂▁▁▃▁▁
OCIR_11 Obsessive–Compulsive Inventory: I sometimes have to wash or clean myself simply because I feel contaminated. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.8 1.8 7 ▇▆▂▂▁▅▂▁
OCIR_17 Obsessive–Compulsive Inventory: I wash my hands more often and longer than necessary. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.5 1.7 7 ▇▆▃▂▁▂▂▁

Scale: obsessiveness-compulsiveness_obsessing

Overview

Reliability: Cronbach’s α [95% CI] = 0.87 [0.84;0.89].

Missing: 0.

Likert plot of scale obsessiveness-compulsiveness_obsessing items

Likert plot of scale obsessiveness-compulsiveness_obsessing items

Distribution of scale obsessiveness-compulsiveness_obsessing

Distribution of scale obsessiveness-compulsiveness_obsessing

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.84 0.87 0.89
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.87 0.87 0.81 0.68 6.5 0.01 2.9 1.6 0.69
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
OCIR_06 0.80 0.80 0.67 0.67 4.0 0.02 NA 0.67
OCIR_12 0.82 0.82 0.69 0.69 4.5 0.02 NA 0.69
OCIR_18 0.82 0.82 0.69 0.69 4.5 0.02 NA 0.69
Item statistics
n raw.r std.r r.cor r.drop mean sd
OCIR_06 336 0.89 0.89 0.82 0.76 3.0 1.7
OCIR_12 336 0.89 0.89 0.80 0.74 3.3 1.9
OCIR_18 336 0.88 0.88 0.79 0.74 2.5 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
OCIR_06 0.21 0.32 0.12 0.09 0.15 0.10 0.01 0
OCIR_12 0.20 0.27 0.10 0.08 0.20 0.12 0.03 0
OCIR_18 0.32 0.35 0.09 0.04 0.11 0.08 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
OCIR_06 Obsessive–Compulsive Inventory: I find it difficult to control my own thoughts. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 3.0 1.7 7 ▅▇▃▂▁▃▂▁
OCIR_12 Obsessive–Compulsive Inventory: I am upset by unpleasant thoughts that come into my mind against my will. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.9 7 ▆▇▃▂▁▆▃▁
OCIR_18 Obsessive–Compulsive Inventory: I frequently get nasty thoughts and have difficulty in getting rid of them. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.5 1.7 7 ▇▇▂▁▁▂▂▁

Scale: burnout_disengagement

Overview

Reliability: Cronbach’s α [95% CI] = 0.78 [0.74;0.82].

Missing: 90.

Likert plot of scale burnout_disengagement items

Likert plot of scale burnout_disengagement items

Distribution of scale burnout_disengagement

Distribution of scale burnout_disengagement

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.74 0.78 0.82
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.78 0.78 0.77 0.47 3.6 0.02 4.6 1.2 0.46
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
OLBI_07 0.67 0.67 0.59 0.41 2.0 0.03 0.01 0.45
OLBI_09_R 0.73 0.73 0.71 0.47 2.7 0.03 0.06 0.39
OLBI_11_R 0.80 0.80 0.75 0.57 4.0 0.02 0.02 0.49
OLBI_15 0.70 0.70 0.62 0.44 2.4 0.03 0.00 0.45
Item statistics
n raw.r std.r r.cor r.drop mean sd
OLBI_07 246 0.84 0.84 0.81 0.69 5.0 1.6
OLBI_09_R 246 0.79 0.78 0.65 0.59 3.6 1.7
OLBI_11_R 246 0.69 0.68 0.50 0.45 5.3 1.6
OLBI_15 246 0.80 0.81 0.76 0.63 4.6 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
OLBI_07 0.04 0.06 0.08 0.09 0.24 0.37 0.12 0.27
OLBI_09_R 0.07 0.24 0.25 0.16 0.09 0.13 0.07 0.27
OLBI_11_R 0.01 0.06 0.12 0.10 0.13 0.33 0.25 0.27
OLBI_15 0.04 0.08 0.13 0.17 0.22 0.28 0.07 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
OLBI_07 Oldenburg Burnout Inventory: I find my work to be a positive challenge. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 5.0 1.6 7 ▁▁▂▂▁▅▇▂
OLBI_09_R Oldenburg Burnout Inventory: Over time, one can become disconnected from this type of work. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
90 0.73 1 3 7 3.6 1.7 7 ▂▇▇▅▁▃▅▂
OLBI_11_R Oldenburg Burnout Inventory: Sometimes I feel sickened by my work tasks. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
90 0.73 1 6 7 5.3 1.6 7 ▁▂▃▂▁▃▇▆
OLBI_15 Oldenburg Burnout Inventory: I feel more and more engaged in my work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 4.6 1.6 7 ▁▂▃▅▁▆▇▂

Scale: burnout_exhaustion

Overview

Reliability: Cronbach’s α [95% CI] = 0.87 [0.85;0.89].

Missing: 90.

Likert plot of scale burnout_exhaustion items

Likert plot of scale burnout_exhaustion items

Distribution of scale burnout_exhaustion

Distribution of scale burnout_exhaustion

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.85 0.87 0.89
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.87 0.87 0.85 0.63 6.8 0.01 4.5 1.4 0.63
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
OLBI_08_R 0.82 0.82 0.76 0.61 4.7 0.02 0.00 0.64
OLBI_10 0.84 0.84 0.79 0.63 5.1 0.02 0.01 0.61
OLBI_12_R 0.82 0.83 0.76 0.62 4.8 0.02 0.00 0.61
OLBI_16 0.85 0.85 0.80 0.66 5.8 0.01 0.01 0.65
Item statistics
n raw.r std.r r.cor r.drop mean sd
OLBI_08_R 246 0.87 0.87 0.81 0.76 4.4 1.7
OLBI_10 246 0.84 0.85 0.77 0.72 4.8 1.5
OLBI_12_R 246 0.87 0.86 0.81 0.75 4.0 1.7
OLBI_16 246 0.81 0.82 0.73 0.68 4.6 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
OLBI_08_R 0.04 0.11 0.20 0.14 0.16 0.23 0.11 0.27
OLBI_10 0.01 0.10 0.10 0.13 0.26 0.32 0.08 0.27
OLBI_12_R 0.06 0.16 0.22 0.14 0.15 0.22 0.06 0.27
OLBI_16 0.03 0.10 0.12 0.13 0.27 0.30 0.05 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
OLBI_08_R Oldenburg Burnout Inventory: During my work, I often feel emotionally drained. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
90 0.73 1 5 7 4.4 1.7 7 ▂▃▇▅▁▆▇▃
OLBI_10 Oldenburg Burnout Inventory: After working, I have enough energy for my leisure activities. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 4.8 1.5 7 ▁▂▂▃▁▇▇▂
OLBI_12_R Oldenburg Burnout Inventory: After my work, I usually feel worn out and weary. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
90 0.73 1 4 7 4.0 1.7 7 ▂▆▇▅▁▅▇▂
OLBI_16 Oldenburg Burnout Inventory: When I work, I usually feel energized. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 4.6 1.6 7 ▁▃▃▃▁▇▇▁

Scale: negative_affect

Overview

Reliability: Cronbach’s α [95% CI] = 0.84 [0.82;0.87].

Missing: 0.

Likert plot of scale negative_affect items

Likert plot of scale negative_affect items

Distribution of scale negative_affect

Distribution of scale negative_affect

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.82 0.84 0.87
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.84 0.85 0.81 0.58 5.5 0.01 2.4 1.1 0.57
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PANAS_04 0.76 0.76 0.68 0.52 3.2 0.02 0.00 0.52
PANAS_06 0.81 0.81 0.75 0.59 4.3 0.02 0.00 0.62
PANAS_08 0.82 0.82 0.75 0.60 4.5 0.02 0.00 0.62
PANAS_18 0.81 0.82 0.76 0.60 4.5 0.02 0.01 0.64
Item statistics
n raw.r std.r r.cor r.drop mean sd
PANAS_04 336 0.88 0.88 0.84 0.77 3.0 1.4
PANAS_06 336 0.82 0.81 0.72 0.66 2.3 1.5
PANAS_08 336 0.78 0.81 0.71 0.65 2.0 1.2
PANAS_18 336 0.82 0.81 0.71 0.65 2.5 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PANAS_04 0.12 0.33 0.22 0.18 0.10 0.03 0.02 0
PANAS_06 0.40 0.27 0.13 0.11 0.05 0.03 0.01 0
PANAS_08 0.42 0.35 0.10 0.08 0.03 0.01 0.00 0
PANAS_18 0.31 0.30 0.12 0.16 0.07 0.03 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PANAS_04 Positive and Negative Affect Schedule: During the last two weeks, I have felt upset haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3 7 3.0 1.4 7 ▃▇▆▅▁▂▁▁
PANAS_06 Positive and Negative Affect Schedule: During the last two weeks, I have felt guilty haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2 7 2.3 1.5 7 ▇▆▂▂▁▁▁▁
PANAS_08 Positive and Negative Affect Schedule: During the last two weeks, I have felt hostile haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2 7 2.0 1.2 7 ▇▇▂▂▁▁▁▁
PANAS_18 Positive and Negative Affect Schedule: During the last two weeks, I have felt jittery haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2 7 2.5 1.5 7 ▇▇▃▅▁▂▁▁

Scale: positive_affect

Overview

Reliability: Cronbach’s α [95% CI] = 0.93 [0.92;0.94].

Missing: 0.

Likert plot of scale positive_affect items

Likert plot of scale positive_affect items

Distribution of scale positive_affect

Distribution of scale positive_affect

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.92 0.93 0.94
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.93 0.93 0.91 0.77 13 0.01 4.2 1.4 0.76
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PANAS_05 0.91 0.91 0.87 0.77 10.2 0.01 0 0.77
PANAS_09 0.90 0.90 0.86 0.76 9.5 0.01 0 0.76
PANAS_10 0.91 0.91 0.88 0.78 10.4 0.01 0 0.78
PANAS_14 0.91 0.91 0.87 0.76 9.6 0.01 0 0.76
Item statistics
n raw.r std.r r.cor r.drop mean sd
PANAS_05 336 0.91 0.90 0.86 0.83 4.3 1.5
PANAS_09 336 0.91 0.92 0.88 0.85 4.2 1.4
PANAS_10 336 0.90 0.90 0.85 0.82 4.0 1.5
PANAS_14 336 0.92 0.91 0.88 0.84 4.1 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PANAS_05 0.02 0.13 0.15 0.23 0.22 0.19 0.06 0
PANAS_09 0.02 0.11 0.17 0.25 0.24 0.17 0.04 0
PANAS_10 0.05 0.13 0.16 0.29 0.19 0.13 0.04 0
PANAS_14 0.04 0.15 0.15 0.26 0.18 0.18 0.04 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PANAS_05 Positive and Negative Affect Schedule: During the last two weeks, I have felt strong haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 4 7 4.3 1.5 7 ▁▅▆▇▁▇▆▂
PANAS_09 Positive and Negative Affect Schedule: During the last two weeks, I have felt enthusiastic haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 4 7 4.2 1.4 7 ▁▃▅▇▁▇▆▁
PANAS_10 Positive and Negative Affect Schedule: During the last two weeks, I have felt proud haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 4 7 4.0 1.5 7 ▁▃▅▇▁▅▃▁
PANAS_14 Positive and Negative Affect Schedule: During the last two weeks, I have felt inspired haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 4 7 4.1 1.5 7 ▁▅▅▇▁▆▆▁

Scale: alexithymia_general-externally_orientated_thinking

Overview

Reliability: Cronbach’s α [95% CI] = 0.58 [0.49;0.67].

Missing: 0.

Likert plot of scale alexithymia_general-externally_orientated_thinking items

Likert plot of scale alexithymia_general-externally_orientated_thinking items

Distribution of scale alexithymia_general-externally_orientated_thinking

Distribution of scale alexithymia_general-externally_orientated_thinking

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.49 0.58 0.67
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.58 0.58 0.41 0.41 1.4 0.05 3.5 1.3 0.41
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PAQ_03 0.42 0.41 0.17 0.41 0.7 NA 0 0.41
PAQ_15 0.40 0.41 0.17 0.41 0.7 NA 0 0.41
Item statistics
n raw.r std.r r.cor r.drop mean sd
PAQ_03 336 0.84 0.84 0.54 0.41 3.1 1.6
PAQ_15 336 0.84 0.84 0.54 0.41 3.9 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PAQ_03 0.15 0.3 0.20 0.11 0.17 0.06 0.01 0
PAQ_15 0.04 0.2 0.14 0.25 0.21 0.13 0.03 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PAQ_03 Perth Alexithymia Questionnaire: I tend to ignore how I feel. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.6 7 ▃▇▅▃▁▅▂▁
PAQ_15 Perth Alexithymia Questionnaire: I prefer to focus on things I can actually see or touch, rather than my emotions. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.9 1.5 7 ▁▆▅▇▁▆▅▁

Scale: alexithymia_positive-difficulty_identifying_feelings

Overview

Reliability: Cronbach’s α [95% CI] = 0.8 [0.76;0.84].

Missing: 0.

Likert plot of scale alexithymia_positive-difficulty_identifying_feelings items

Likert plot of scale alexithymia_positive-difficulty_identifying_feelings items

Distribution of scale alexithymia_positive-difficulty_identifying_feelings

Distribution of scale alexithymia_positive-difficulty_identifying_feelings

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.76 0.8 0.84
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.8 0.8 0.67 0.67 4.1 0.02 2.6 1.4 0.67
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PAQ_05 0.72 0.67 0.45 0.67 2 NA 0 0.67
PAQ_17 0.63 0.67 0.45 0.67 2 NA 0 0.67
Item statistics
n raw.r std.r r.cor r.drop mean sd
PAQ_05 336 0.92 0.91 0.75 0.67 2.7 1.5
PAQ_17 336 0.91 0.91 0.75 0.67 2.4 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PAQ_05 0.19 0.41 0.13 0.08 0.11 0.06 0.01 0
PAQ_17 0.27 0.40 0.13 0.08 0.06 0.05 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PAQ_05 Perth Alexithymia Questionnaire: When I’m feeling good, I can’t tell whether I’m happy, excited, or amused. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.7 1.5 7 ▃▇▂▂▁▂▁▁
PAQ_17 Perth Alexithymia Questionnaire: When I’m feeling good, I get confused about what emotion it is. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.4 1.4 7 ▆▇▂▂▁▁▁▁

Scale: alexithymia_negative-difficulty_describing_feelings

Overview

Reliability: Cronbach’s α [95% CI] = 0.83 [0.8;0.87].

Missing: 0.

Likert plot of scale alexithymia_negative-difficulty_describing_feelings items

Likert plot of scale alexithymia_negative-difficulty_describing_feelings items

Distribution of scale alexithymia_negative-difficulty_describing_feelings

Distribution of scale alexithymia_negative-difficulty_describing_feelings

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.8 0.83 0.87
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.83 0.83 0.71 0.71 5 0.02 3.4 1.6 0.71
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PAQ_07 0.72 0.71 0.51 0.71 2.5 NA 0 0.71
PAQ_13 0.71 0.71 0.51 0.71 2.5 NA 0 0.71
Item statistics
n raw.r std.r r.cor r.drop mean sd
PAQ_07 336 0.93 0.93 0.78 0.71 3.4 1.8
PAQ_13 336 0.93 0.93 0.78 0.71 3.3 1.8
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PAQ_07 0.15 0.26 0.20 0.07 0.18 0.11 0.04 0
PAQ_13 0.14 0.30 0.15 0.07 0.19 0.12 0.03 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PAQ_07 Perth Alexithymia Questionnaire: When I’m feeling bad, I can’t talk about those feelings in much depth or detail. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.4 1.8 7 ▅▇▆▂▁▆▃▁
PAQ_13 Perth Alexithymia Questionnaire: When something bad happens, it’s hard for me to put into words how I’m feeling. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.8 7 ▃▇▃▂▁▅▃▁

Scale: alexithymia_negative-difficulty_identifying_feelings

Overview

Reliability: Cronbach’s α [95% CI] = 0.79 [0.74;0.83].

Missing: 0.

Likert plot of scale alexithymia_negative-difficulty_identifying_feelings items

Likert plot of scale alexithymia_negative-difficulty_identifying_feelings items

Distribution of scale alexithymia_negative-difficulty_identifying_feelings

Distribution of scale alexithymia_negative-difficulty_identifying_feelings

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.74 0.79 0.83
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.79 0.79 0.65 0.65 3.7 0.02 2.9 1.4 0.65
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PAQ_08 0.64 0.65 0.42 0.65 1.8 NA 0 0.65
PAQ_20 0.66 0.65 0.42 0.65 1.8 NA 0 0.65
Item statistics
n raw.r std.r r.cor r.drop mean sd
PAQ_08 336 0.91 0.91 0.73 0.65 2.9 1.6
PAQ_20 336 0.91 0.91 0.73 0.65 2.8 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PAQ_08 0.15 0.39 0.17 0.10 0.10 0.08 0.01 0
PAQ_20 0.19 0.39 0.14 0.08 0.12 0.07 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PAQ_08 Perth Alexithymia Questionnaire: When I’m feeling bad, I can’t make sense of those feelings. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.9 1.6 7 ▃▇▃▂▁▂▂▁
PAQ_20 Perth Alexithymia Questionnaire: When I’m feeling bad, I’m puzzled by those feelings. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.8 1.6 7 ▃▇▃▂▁▂▂▁

Scale: alexithymia_positive-difficulty_describing_feelings

Overview

Reliability: Cronbach’s α [95% CI] = 0.81 [0.77;0.85].

Missing: 0.

Likert plot of scale alexithymia_positive-difficulty_describing_feelings items

Likert plot of scale alexithymia_positive-difficulty_describing_feelings items

Distribution of scale alexithymia_positive-difficulty_describing_feelings

Distribution of scale alexithymia_positive-difficulty_describing_feelings

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.77 0.81 0.85
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.81 0.81 0.69 0.69 4.4 0.02 3 1.5 0.69
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PAQ_10 0.66 0.69 0.47 0.69 2.2 NA 0 0.69
PAQ_16 0.72 0.69 0.47 0.69 2.2 NA 0 0.69
Item statistics
n raw.r std.r r.cor r.drop mean sd
PAQ_10 336 0.91 0.92 0.76 0.69 3 1.6
PAQ_16 336 0.92 0.92 0.76 0.69 3 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PAQ_10 0.16 0.34 0.19 0.10 0.10 0.09 0.01 0
PAQ_16 0.15 0.36 0.15 0.08 0.14 0.10 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PAQ_10 Perth Alexithymia Questionnaire: When I’m feeling good, I can’t talk about those feelings in much depth or detail. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 3 1.6 7 ▃▇▅▂▁▂▂▁
PAQ_16 Perth Alexithymia Questionnaire: When something good happens, it’s hard for me to put into words how I’m feeling. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 3 1.7 7 ▃▇▃▂▁▃▂▁

Scale: perceived_stress

Overview

Reliability: Cronbach’s α [95% CI] = 0.93 [0.92;0.94].

Missing: 0.

Likert plot of scale perceived_stress items

Likert plot of scale perceived_stress items

Distribution of scale perceived_stress

Distribution of scale perceived_stress

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.92 0.93 0.94
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.93 0.93 0.94 0.48 13 0.01 3.4 1.1 0.52
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PSS_01 0.93 0.92 0.94 0.48 12 0.01 0.04 0.52
PSS_02 0.92 0.92 0.94 0.47 12 0.01 0.04 0.51
PSS_03 0.92 0.92 0.94 0.47 12 0.01 0.04 0.51
PSS_04_R 0.93 0.93 0.94 0.50 13 0.01 0.04 0.53
PSS_05_R 0.93 0.92 0.94 0.48 12 0.01 0.04 0.52
PSS_06_R 0.92 0.92 0.93 0.47 11 0.01 0.04 0.49
PSS_07_R 0.92 0.92 0.94 0.47 12 0.01 0.04 0.51
PSS_08 0.92 0.92 0.94 0.47 12 0.01 0.04 0.51
PSS_09_R 0.93 0.92 0.94 0.48 12 0.01 0.04 0.51
PSS_10_R 0.92 0.92 0.93 0.46 11 0.01 0.04 0.50
PSS_11 0.93 0.92 0.94 0.48 12 0.01 0.04 0.52
PSS_12 0.94 0.94 0.95 0.54 15 0.00 0.01 0.54
PSS_13_R 0.93 0.93 0.94 0.49 13 0.01 0.04 0.53
PSS_14 0.92 0.92 0.93 0.46 11 0.01 0.04 0.50
Item statistics
n raw.r std.r r.cor r.drop mean sd
PSS_01 336 0.74 0.74 0.72 0.69 3.1 1.4
PSS_02 336 0.78 0.77 0.76 0.73 3.3 1.7
PSS_03 336 0.80 0.80 0.79 0.76 3.7 1.6
PSS_04_R 336 0.57 0.58 0.54 0.51 3.4 1.4
PSS_05_R 336 0.73 0.73 0.71 0.68 3.5 1.5
PSS_06_R 336 0.84 0.83 0.83 0.80 3.3 1.5
PSS_07_R 336 0.78 0.78 0.77 0.74 3.8 1.5
PSS_08 336 0.80 0.80 0.79 0.76 2.9 1.6
PSS_09_R 336 0.73 0.73 0.71 0.68 3.4 1.5
PSS_10_R 336 0.84 0.84 0.84 0.80 3.6 1.6
PSS_11 336 0.71 0.72 0.70 0.66 3.1 1.4
PSS_12 336 0.24 0.25 0.17 0.16 5.0 1.3
PSS_13_R 336 0.63 0.64 0.59 0.57 3.0 1.4
PSS_14 336 0.87 0.86 0.87 0.84 3.1 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PSS_01 0.10 0.33 0.20 0.19 0.13 0.04 0.02 0
PSS_02 0.14 0.25 0.17 0.18 0.14 0.08 0.04 0
PSS_03 0.06 0.24 0.19 0.18 0.18 0.10 0.05 0
PSS_04_R 0.09 0.14 0.32 0.23 0.13 0.07 0.01 0
PSS_05_R 0.12 0.15 0.24 0.29 0.11 0.09 0.01 0
PSS_06_R 0.14 0.20 0.24 0.23 0.10 0.07 0.02 0
PSS_07_R 0.07 0.14 0.21 0.26 0.15 0.14 0.03 0
PSS_08 0.22 0.30 0.13 0.15 0.13 0.04 0.03 0
PSS_09_R 0.12 0.13 0.27 0.24 0.14 0.08 0.01 0
PSS_10_R 0.10 0.14 0.23 0.24 0.15 0.12 0.03 0
PSS_11 0.13 0.28 0.23 0.19 0.10 0.06 0.01 0
PSS_12 0.01 0.04 0.07 0.22 0.32 0.25 0.10 0
PSS_13_R 0.14 0.24 0.27 0.21 0.10 0.04 0.00 0
PSS_14 0.22 0.26 0.12 0.17 0.11 0.09 0.03 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PSS_01 Perceived Stress Scale: In the last month, how often have you been upset because of something that happened unexpectedly? haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 3.1 1.4 7 ▂▇▅▅▁▃▁▁
PSS_02 Perceived Stress Scale: In the last month, how often have you felt that you were unable to control the important things in your life? haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 3.3 1.7 7 ▅▇▆▆▁▅▂▁
PSS_03 Perceived Stress Scale: In the last month, how often have you felt nervous and “stressed”? haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 4.0 7 3.7 1.6 7 ▂▇▆▆▁▆▃▂
PSS_04_R Perceived Stress Scale: In the last month, how often have you dealt successfully with irritating life hassles? haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3.0 7 3.4 1.4 7 ▂▃▇▆▁▃▂▁
PSS_05_R Perceived Stress Scale: In the last month, how often have you felt that you were effectively coping with important changes that were occurring in your life? haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3.5 7 3.5 1.5 7 ▃▅▇▇▁▃▂▁
PSS_06_R Perceived Stress Scale: In the last month, how often have you felt confident about your ability to handle your personal problems? haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3.0 7 3.3 1.5 7 ▅▆▇▇▁▃▂▁
PSS_07_R Perceived Stress Scale: In the last month, how often have you felt that things were going your way? haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 4.0 7 3.8 1.5 7 ▂▅▆▇▁▅▅▁
PSS_08 Perceived Stress Scale: In the last month, how often have you found that you could not cope with all the things that you had to do? haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.9 1.6 7 ▆▇▃▃▁▃▁▁
PSS_09_R Perceived Stress Scale: In the last month, how often have you been able to control irritations in your life? haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3.0 7 3.4 1.5 7 ▃▃▇▇▁▅▂▁
PSS_10_R Perceived Stress Scale: In the last month, how often have you felt that you were on top of things? haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 4.0 7 3.6 1.6 7 ▃▅▇▇▁▅▃▁
PSS_11 Perceived Stress Scale: In the last month, how often have you been angered because of things that happened that were outside of your control? haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 3.1 1.4 7 ▃▇▇▆▁▃▂▁
PSS_12 Perceived Stress Scale: In the last month, how often have you found yourself thinking about things that you have to accomplish? haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 5.0 7 5.0 1.3 7 ▁▁▂▆▁▇▆▂
PSS_13_R Perceived Stress Scale: In the last month, how often have you been able to control the way you spend your time? haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3.0 7 3.0 1.4 7 ▅▇▇▆▁▃▁▁
PSS_14 Perceived Stress Scale: In the last month, how often have you felt difficulties were piling up so high that you could not overcome them? haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 3.1 1.7 7 ▆▇▃▅▁▃▃▁

Scale: perseverative_thinking_core_characteristics_of_repetitive_negative_thinking

Overview

Reliability: Cronbach’s α [95% CI] = 0.95 [0.95;0.96].

Missing: 0.

Likert plot of scale perseverative_thinking_core_characteristics_of_repetitive_negative_thinking items

Likert plot of scale perseverative_thinking_core_characteristics_of_repetitive_negative_thinking items

Distribution of scale perseverative_thinking_core_characteristics_of_repetitive_negative_thinking

Distribution of scale perseverative_thinking_core_characteristics_of_repetitive_negative_thinking

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.95 0.95 0.96
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.95 0.95 0.96 0.69 20 0 3.8 1.5 0.7
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PTQ_01 0.94 0.94 0.95 0.68 17 0 0.01 0.69
PTQ_02 0.95 0.95 0.95 0.69 18 0 0.01 0.71
PTQ_03 0.95 0.95 0.95 0.68 17 0 0.01 0.69
PTQ_06 0.95 0.95 0.95 0.69 17 0 0.01 0.70
PTQ_07 0.95 0.95 0.95 0.70 18 0 0.01 0.72
PTQ_08 0.95 0.95 0.95 0.69 18 0 0.01 0.70
PTQ_11 0.94 0.94 0.95 0.68 17 0 0.01 0.69
PTQ_12 0.95 0.95 0.95 0.72 20 0 0.00 0.72
PTQ_13 0.95 0.95 0.95 0.70 18 0 0.01 0.70
Item statistics
n raw.r std.r r.cor r.drop mean sd
PTQ_01 336 0.90 0.90 0.89 0.87 3.7 1.8
PTQ_02 336 0.86 0.86 0.84 0.82 3.9 1.7
PTQ_03 336 0.88 0.88 0.87 0.84 3.3 1.8
PTQ_06 336 0.87 0.87 0.85 0.83 4.0 1.8
PTQ_07 336 0.83 0.83 0.81 0.78 4.1 1.7
PTQ_08 336 0.86 0.86 0.84 0.82 3.5 1.7
PTQ_11 336 0.89 0.89 0.88 0.86 3.5 1.8
PTQ_12 336 0.74 0.75 0.71 0.68 4.6 1.6
PTQ_13 336 0.83 0.83 0.80 0.78 3.3 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PTQ_01 0.12 0.19 0.14 0.12 0.26 0.13 0.04 0
PTQ_02 0.11 0.17 0.15 0.10 0.28 0.17 0.03 0
PTQ_03 0.16 0.27 0.16 0.09 0.18 0.10 0.03 0
PTQ_06 0.11 0.15 0.11 0.13 0.29 0.15 0.05 0
PTQ_07 0.09 0.15 0.10 0.14 0.30 0.18 0.04 0
PTQ_08 0.12 0.26 0.15 0.12 0.20 0.11 0.04 0
PTQ_11 0.14 0.24 0.15 0.10 0.22 0.12 0.04 0
PTQ_12 0.06 0.09 0.07 0.13 0.31 0.29 0.05 0
PTQ_13 0.15 0.27 0.16 0.13 0.16 0.10 0.02 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PTQ_01 Perseverative Thinking Questionnaire: The same thoughts keep going through my mind again and again. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.7 1.8 7 ▃▆▅▃▁▇▃▁
PTQ_02 Perseverative Thinking Questionnaire: Thoughts intrude into my mind. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.9 1.7 7 ▃▅▅▃▁▇▅▁
PTQ_03 Perseverative Thinking Questionnaire: I can’t stop dwelling on negative experiences or problems. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.8 7 ▅▇▅▃▁▆▃▁
PTQ_06 Perseverative Thinking Questionnaire: My thoughts repeat themselves. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.0 1.8 7 ▃▅▃▃▁▇▅▂
PTQ_07 Perseverative Thinking Questionnaire: Thoughts come to my mind without me wanting them to. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.1 1.7 7 ▂▃▃▃▁▇▅▁
PTQ_08 Perseverative Thinking Questionnaire: I get stuck on certain issues and can’t move on. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.5 1.7 7 ▃▇▅▃▁▆▃▁
PTQ_11 Perseverative Thinking Questionnaire: I keep thinking about the same issue all the time. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.5 1.8 7 ▅▇▅▃▁▇▃▁
PTQ_12 Perseverative Thinking Questionnaire: Thoughts just pop into my mind. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.6 1.6 7 ▂▂▂▃▁▇▇▁
PTQ_13 Perseverative Thinking Questionnaire: I feel driven to continue dwelling on the same issue. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.7 7 ▅▇▅▃▁▅▃▁

Scale: perseverative_thinking_unproductiveness_of_repetitive_negative_thinking

Overview

Reliability: Cronbach’s α [95% CI] = 0.86 [0.83;0.89].

Missing: 0.

Likert plot of scale perseverative_thinking_unproductiveness_of_repetitive_negative_thinking items

Likert plot of scale perseverative_thinking_unproductiveness_of_repetitive_negative_thinking items

Distribution of scale perseverative_thinking_unproductiveness_of_repetitive_negative_thinking

Distribution of scale perseverative_thinking_unproductiveness_of_repetitive_negative_thinking

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.83 0.86 0.89
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.86 0.86 0.81 0.67 6.1 0.01 3.3 1.4 0.65
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PTQ_04 0.75 0.76 0.61 0.61 3.1 0.03 NA 0.61
PTQ_09 0.78 0.79 0.65 0.65 3.7 0.02 NA 0.65
PTQ_14 0.86 0.86 0.75 0.75 6.1 0.02 NA 0.75
Item statistics
n raw.r std.r r.cor r.drop mean sd
PTQ_04 336 0.91 0.91 0.85 0.78 3.4 1.7
PTQ_09 336 0.90 0.89 0.82 0.75 3.5 1.7
PTQ_14 336 0.84 0.85 0.72 0.67 3.1 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PTQ_04 0.13 0.26 0.19 0.10 0.21 0.10 0.03 0
PTQ_09 0.12 0.24 0.19 0.11 0.21 0.11 0.02 0
PTQ_14 0.15 0.26 0.22 0.17 0.11 0.06 0.03 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PTQ_04 Perseverative Thinking Questionnaire: I think about many problems without solving any of them. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.4 1.7 7 ▃▇▆▃▁▆▃▁
PTQ_09 Perseverative Thinking Questionnaire: I keep asking myself questions without finding an answer. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.5 1.7 7 ▅▇▆▃▁▇▃▁
PTQ_14 Perseverative Thinking Questionnaire: My thoughts are not much help to me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.6 7 ▅▇▇▅▁▃▂▁

Scale: perseverative_thinking_repetitive_negative_thinking_capturing_mental_capacity

Overview

Reliability: Cronbach’s α [95% CI] = 0.9 [0.88;0.92].

Missing: 0.

Likert plot of scale perseverative_thinking_repetitive_negative_thinking_capturing_mental_capacity items

Likert plot of scale perseverative_thinking_repetitive_negative_thinking_capturing_mental_capacity items

Distribution of scale perseverative_thinking_repetitive_negative_thinking_capturing_mental_capacity

Distribution of scale perseverative_thinking_repetitive_negative_thinking_capturing_mental_capacity

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.88 0.9 0.92
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.9 0.9 0.86 0.76 9.3 0.01 3.2 1.5 0.75
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PTQ_05 0.85 0.86 0.75 0.75 5.9 0.02 NA 0.75
PTQ_10 0.85 0.85 0.74 0.74 5.7 0.02 NA 0.74
PTQ_15 0.88 0.88 0.78 0.78 7.2 0.01 NA 0.78
Item statistics
n raw.r std.r r.cor r.drop mean sd
PTQ_05 336 0.91 0.92 0.86 0.81 3.0 1.6
PTQ_10 336 0.92 0.92 0.87 0.82 3.4 1.7
PTQ_15 336 0.91 0.91 0.83 0.79 3.1 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PTQ_05 0.14 0.35 0.19 0.09 0.14 0.07 0.02 0
PTQ_10 0.14 0.26 0.16 0.10 0.21 0.12 0.02 0
PTQ_15 0.15 0.32 0.17 0.10 0.13 0.12 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PTQ_05 Perseverative Thinking Questionnaire: I can’t do anything else while thinking about my problems. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.0 1.6 7 ▃▇▅▂▁▃▂▁
PTQ_10 Perseverative Thinking Questionnaire: My thoughts prevent me from focusing on other things. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.4 1.7 7 ▅▇▅▃▁▆▃▁
PTQ_15 Perseverative Thinking Questionnaire: My thoughts take up all my attention. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.7 7 ▃▇▅▂▁▃▃▁

Scale: close

Overview

Reliability: Cronbach’s α [95% CI] = 0.87 [0.85;0.89].

Missing: 0.

Likert plot of scale close items

Likert plot of scale close items

Distribution of scale close

Distribution of scale close

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.85 0.87 0.89
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.87 0.87 0.87 0.53 6.7 0.01 4.7 1.3 0.55
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
RAAS_01 0.85 0.85 0.84 0.53 5.6 0.01 0.02 0.54
RAAS_06 0.86 0.86 0.85 0.55 6.2 0.01 0.02 0.57
RAAS_08_R 0.82 0.82 0.81 0.48 4.7 0.02 0.01 0.51
RAAS_12 0.85 0.85 0.84 0.53 5.6 0.01 0.02 0.54
RAAS_13_R 0.83 0.83 0.81 0.49 4.9 0.01 0.02 0.50
RAAS_17_R 0.88 0.87 0.86 0.58 7.0 0.01 0.01 0.57
Item statistics
n raw.r std.r r.cor r.drop mean sd
RAAS_01 336 0.78 0.78 0.72 0.66 4.3 1.7
RAAS_06 336 0.72 0.73 0.64 0.60 4.7 1.6
RAAS_08_R 336 0.88 0.88 0.87 0.81 4.5 1.7
RAAS_12 336 0.77 0.78 0.72 0.67 5.0 1.5
RAAS_13_R 336 0.86 0.85 0.84 0.78 4.6 1.7
RAAS_17_R 336 0.67 0.66 0.56 0.52 4.7 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
RAAS_01 0.07 0.12 0.15 0.13 0.23 0.24 0.06 0
RAAS_06 0.02 0.10 0.12 0.15 0.20 0.33 0.07 0
RAAS_08_R 0.02 0.12 0.21 0.10 0.15 0.29 0.11 0
RAAS_12 0.02 0.07 0.09 0.10 0.24 0.37 0.12 0
RAAS_13_R 0.02 0.12 0.17 0.12 0.16 0.32 0.10 0
RAAS_17_R 0.01 0.12 0.14 0.15 0.15 0.29 0.13 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
RAAS_01 Revised Adult Attachment Scale: I find it relatively easy to get close to people. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.3 1.7 7 ▂▃▅▅▁▇▇▂
RAAS_06 Revised Adult Attachment Scale: I don’t worry about people getting too close to me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.7 1.6 7 ▁▂▃▃▁▅▇▂
RAAS_08_R Revised Adult Attachment Scale: I am somewhat uncomfortable being close to others. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.5 1.7 7 ▁▃▆▃▁▅▇▃
RAAS_12 Revised Adult Attachment Scale: I am comfortable developing close relationships with others. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 5.0 1.5 7 ▁▂▂▂▁▅▇▂
RAAS_13_R Revised Adult Attachment Scale: I am uncomfortable when anyone gets too emotionally close to me. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.6 1.7 7 ▁▃▅▃▁▅▇▂
RAAS_17_R Revised Adult Attachment Scale: Romantic partners often want me to be emotionally closer than I feel comfortable being. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.7 1.6 7 ▁▃▃▅▁▅▇▃

Scale: depend

Overview

Reliability: Cronbach’s α [95% CI] = 0.84 [0.82;0.87].

Missing: 0.

Likert plot of scale depend items

Likert plot of scale depend items

Distribution of scale depend

Distribution of scale depend

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.82 0.84 0.87
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.84 0.85 0.85 0.52 5.5 0.01 4.2 1.3 0.5
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
RAAS_02_R 0.82 0.82 0.79 0.54 4.6 0.02 0.01 0.52
RAAS_05 0.81 0.82 0.80 0.53 4.5 0.02 0.02 0.54
RAAS_07_R 0.81 0.81 0.79 0.52 4.3 0.02 0.01 0.50
RAAS_14 0.81 0.81 0.79 0.52 4.3 0.02 0.01 0.50
RAAS_16_R 0.81 0.81 0.82 0.52 4.3 0.02 0.03 0.44
Item statistics
n raw.r std.r r.cor r.drop mean sd
RAAS_02_R 336 0.78 0.77 0.71 0.63 3.5 1.8
RAAS_05 336 0.79 0.78 0.72 0.65 3.9 1.7
RAAS_07_R 336 0.78 0.79 0.75 0.66 4.8 1.5
RAAS_14 336 0.78 0.80 0.75 0.66 4.9 1.5
RAAS_16_R 336 0.80 0.80 0.71 0.66 3.8 1.8
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
RAAS_02_R 0.10 0.24 0.27 0.07 0.13 0.15 0.05 0
RAAS_05 0.06 0.23 0.17 0.10 0.25 0.15 0.04 0
RAAS_07_R 0.00 0.10 0.15 0.12 0.21 0.32 0.10 0
RAAS_14 0.01 0.07 0.12 0.10 0.23 0.35 0.10 0
RAAS_16_R 0.10 0.18 0.23 0.08 0.17 0.19 0.05 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
RAAS_02_R Revised Adult Attachment Scale: I find it difficult to allow myself to depend on others. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 3 7 3.5 1.8 7 ▃▇▇▂▁▃▅▂
RAAS_05 Revised Adult Attachment Scale: I am comfortable depending on others. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.9 1.7 7 ▂▇▆▃▁▇▅▁
RAAS_07_R Revised Adult Attachment Scale: I find that people are never there when you need them. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.8 1.5 7 ▁▂▃▃▁▅▇▂
RAAS_14 Revised Adult Attachment Scale: I know that people will be there when I need them. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.9 1.5 7 ▁▂▃▂▁▅▇▂
RAAS_16_R Revised Adult Attachment Scale: I find it difficult to trust others completely. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 3 7 3.8 1.8 7 ▃▆▇▃▁▆▆▂

Scale: survey_enjoyment

Overview

Reliability: Cronbach’s α [95% CI] = 0.8 [0.76;0.83].

Missing: 0.

Likert plot of scale survey_enjoyment items

Likert plot of scale survey_enjoyment items

Distribution of scale survey_enjoyment

Distribution of scale survey_enjoyment

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.76 0.8 0.83
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.8 0.8 0.73 0.57 4 0.02 5.5 0.99 0.59
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
SAS_01 0.68 0.69 0.52 0.52 2.2 0.03 NA 0.52
SAS_02 0.75 0.75 0.60 0.60 3.0 0.03 NA 0.60
SAS_03 0.74 0.74 0.59 0.59 2.8 0.03 NA 0.59
Item statistics
n raw.r std.r r.cor r.drop mean sd
SAS_01 336 0.87 0.86 0.76 0.68 5.3 1.2
SAS_02 336 0.85 0.83 0.69 0.62 5.3 1.3
SAS_03 336 0.82 0.84 0.71 0.63 5.7 1.1
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
SAS_01 0.01 0.03 0.01 0.19 0.21 0.43 0.13 0
SAS_02 0.01 0.03 0.03 0.17 0.22 0.39 0.15 0
SAS_03 0.01 0.01 0.02 0.08 0.21 0.48 0.20 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
SAS_01 Survey Attitude Scale: I really enjoy responding to questionnaires through the mail or Internet. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.3 1.2 7 ▁▁▁▃▁▃▇▂
SAS_02 Survey Attitude Scale: I really enjoy being interviewed for a survey. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.3 1.3 7 ▁▁▁▃▁▅▇▃
SAS_03 Survey Attitude Scale: Surveys are interesting in themselves. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.7 1.1 7 ▁▁▁▁▁▃▇▃

Scale: survey_value

Overview

Reliability: Cronbach’s α [95% CI] = 0.77 [0.73;0.81].

Missing: 0.

Likert plot of scale survey_value items

Likert plot of scale survey_value items

Distribution of scale survey_value

Distribution of scale survey_value

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.73 0.77 0.81
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.77 0.77 0.7 0.53 3.4 0.02 6.1 0.71 0.49
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
SAS_04 0.65 0.65 0.48 0.48 1.9 0.04 NA 0.48
SAS_05 0.65 0.65 0.49 0.49 1.9 0.04 NA 0.49
SAS_06_R 0.76 0.76 0.62 0.62 3.2 0.03 NA 0.62
Item statistics
n raw.r std.r r.cor r.drop mean sd
SAS_04 336 0.86 0.85 0.74 0.64 5.8 0.91
SAS_05 336 0.84 0.85 0.73 0.64 6.2 0.81
SAS_06_R 336 0.79 0.79 0.61 0.54 6.3 0.86
Non missing response frequency for each item
2 3 4 5 6 7 miss
SAS_04 0 0.01 0.09 0.19 0.49 0.22 0
SAS_05 0 0.00 0.02 0.15 0.46 0.37 0
SAS_06_R 0 0.01 0.03 0.08 0.39 0.49 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
SAS_04 Survey Attitude Scale: Surveys are important for society. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 2 6 7 5.8 0.91 7 ▁▁▁▂▃▁▇▃
SAS_05 Survey Attitude Scale: A lot can be learned from information collected through surveys. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 2 6 7 6.2 0.81 7 ▁▁▁▁▂▁▇▆
SAS_06_R Survey Attitude Scale: Completing surveys is a waste of time. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 2 6 7 6.3 0.86 7 ▁▁▁▁▁▁▆▇

Scale: survey_burden

Overview

Reliability: Cronbach’s α [95% CI] = 0.62 [0.55;0.69].

Missing: 0.

Likert plot of scale survey_burden items

Likert plot of scale survey_burden items

Distribution of scale survey_burden

Distribution of scale survey_burden

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.55 0.62 0.69
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.62 0.65 0.57 0.38 1.9 0.04 2.6 1 0.34
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
SAS_07 0.43 0.46 0.30 0.30 0.86 0.06 NA 0.30
SAS_08 0.49 0.51 0.34 0.34 1.02 0.05 NA 0.34
SAS_09 0.66 0.67 0.50 0.50 2.03 0.04 NA 0.50
Item statistics
n raw.r std.r r.cor r.drop mean sd
SAS_07 336 0.77 0.80 0.66 0.49 2.3 1.3
SAS_08 336 0.72 0.78 0.62 0.47 2.1 1.1
SAS_09 336 0.79 0.71 0.45 0.37 3.5 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
SAS_07 0.29 0.39 0.11 0.14 0.02 0.03 0.01 0
SAS_08 0.32 0.46 0.09 0.11 0.03 0.00 0.00 0
SAS_09 0.14 0.26 0.11 0.15 0.22 0.09 0.03 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
SAS_07 Survey Attitude Scale: I receive far too many requests to participate in surveys. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.3 1.3 7 ▆▇▂▃▁▁▁▁
SAS_08 Survey Attitude Scale: Opinion polls are an invasion of privacy. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.1 1.1 7 ▆▇▂▂▁▁▁▁
SAS_09 Survey Attitude Scale: It is exhaustive to answer so many questions in a survey. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.5 1.7 7 ▅▇▃▅▁▇▃▁

Scale: loneliness

Overview

Reliability: Cronbach’s α [95% CI] = 0.91 [0.89;0.92].

Missing: 0.

Likert plot of scale loneliness items

Likert plot of scale loneliness items

Distribution of scale loneliness

Distribution of scale loneliness

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.89 0.91 0.92
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.91 0.91 0.91 0.56 10 0.01 3.2 1.4 0.57
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
ULS8_01 0.89 0.89 0.89 0.53 7.9 0.01 0.03 0.54
ULS8_02 0.90 0.90 0.90 0.55 8.6 0.01 0.03 0.54
ULS8_03_R 0.92 0.92 0.92 0.63 12.1 0.01 0.01 0.68
ULS8_04 0.89 0.89 0.89 0.53 8.0 0.01 0.03 0.54
ULS8_05 0.88 0.88 0.88 0.52 7.6 0.01 0.03 0.51
ULS8_06_R 0.91 0.91 0.91 0.59 10.1 0.01 0.03 0.68
ULS8_07 0.90 0.90 0.90 0.56 9.0 0.01 0.03 0.54
ULS8_08 0.89 0.89 0.90 0.54 8.3 0.01 0.03 0.54
Item statistics
n raw.r std.r r.cor r.drop mean sd
ULS8_01 336 0.87 0.87 0.87 0.82 3.1 1.9
ULS8_02 336 0.80 0.81 0.78 0.74 2.4 1.6
ULS8_03_R 336 0.54 0.53 0.42 0.40 4.0 1.9
ULS8_04 336 0.87 0.86 0.86 0.82 3.1 1.8
ULS8_05 336 0.92 0.91 0.92 0.88 3.2 1.9
ULS8_06_R 336 0.67 0.68 0.60 0.57 3.1 1.6
ULS8_07 336 0.77 0.77 0.72 0.69 3.2 1.8
ULS8_08 336 0.83 0.84 0.81 0.78 3.3 1.8
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
ULS8_01 0.26 0.23 0.14 0.06 0.16 0.11 0.03 0
ULS8_02 0.36 0.30 0.11 0.07 0.10 0.04 0.01 0
ULS8_03_R 0.09 0.19 0.19 0.11 0.16 0.15 0.12 0
ULS8_04 0.21 0.31 0.09 0.10 0.18 0.09 0.03 0
ULS8_05 0.21 0.29 0.12 0.05 0.18 0.10 0.05 0
ULS8_06_R 0.12 0.37 0.21 0.09 0.08 0.09 0.04 0
ULS8_07 0.22 0.25 0.10 0.15 0.14 0.11 0.04 0
ULS8_08 0.16 0.27 0.14 0.13 0.15 0.11 0.04 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
ULS8_01 UCLA Loneliness Scale: I lack companionship. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.9 7 ▇▇▅▂▁▅▃▁
ULS8_02 UCLA Loneliness Scale: There is no one I can turn to. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.4 1.6 7 ▇▇▂▂▁▂▁▁
ULS8_03_R UCLA Loneliness Scale: I am an outgoing person. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 4 7 4.0 1.9 7 ▃▇▇▅▁▆▆▅
ULS8_04 UCLA Loneliness Scale: I feel left out. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 3.1 1.8 7 ▆▇▂▂▁▅▂▁
ULS8_05 UCLA Loneliness Scale: I feel isolated from others. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.2 1.9 7 ▆▇▃▂▁▅▃▁
ULS8_06_R UCLA Loneliness Scale: I can find companionship when I want it. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 3 7 3.1 1.6 7 ▂▇▅▂▁▂▂▁
ULS8_07 UCLA Loneliness Scale: I am unhappy being so withdrawn. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.2 1.8 7 ▇▇▃▅▁▅▃▁
ULS8_08 UCLA Loneliness Scale: People are around me but not with me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.8 7 ▅▇▅▃▁▅▃▁

Scale: engagement_vigor

Overview

Reliability: Cronbach’s α [95% CI] = 0.9 [0.88;0.92].

Missing: 90.

Likert plot of scale engagement_vigor items

Likert plot of scale engagement_vigor items

Distribution of scale engagement_vigor

Distribution of scale engagement_vigor

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.88 0.9 0.92
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.9 0.9 0.87 0.75 9.2 0.01 4.4 1.6 0.75
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
UWES9_01 0.85 0.86 0.75 0.75 5.9 0.02 NA 0.75
UWES9_02 0.82 0.83 0.70 0.70 4.7 0.02 NA 0.70
UWES9_05 0.90 0.90 0.81 0.81 8.7 0.01 NA 0.81
Item statistics
n raw.r std.r r.cor r.drop mean sd
UWES9_01 246 0.91 0.92 0.86 0.81 4.2 1.7
UWES9_02 246 0.93 0.93 0.89 0.84 4.7 1.6
UWES9_05 246 0.90 0.89 0.80 0.76 4.2 1.8
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
UWES9_01 0.05 0.15 0.17 0.16 0.18 0.22 0.07 0.27
UWES9_02 0.06 0.09 0.10 0.14 0.22 0.33 0.08 0.27
UWES9_05 0.10 0.14 0.13 0.12 0.16 0.30 0.05 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
UWES9_01 Utrecht Work Engagement Scale: At my work, I feel bursting with energy. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 4 7 4.2 1.7 7 ▂▅▆▆▁▇▇▂
UWES9_02 Utrecht Work Engagement Scale: At my job, I feel strong and vigorous. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 4.7 1.6 7 ▂▂▂▃▁▆▇▂
UWES9_05 Utrecht Work Engagement Scale: When I get up in the morning, I feel like going to work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 4.2 1.8 7 ▂▃▃▃▁▅▇▂

Scale: engagement_dedication

Overview

Reliability: Cronbach’s α [95% CI] = 0.93 [0.91;0.94].

Missing: 90.

Likert plot of scale engagement_dedication items

Likert plot of scale engagement_dedication items

Distribution of scale engagement_dedication

Distribution of scale engagement_dedication

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.91 0.93 0.94
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.93 0.93 0.9 0.81 13 0.01 5 1.5 0.79
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
UWES9_03 0.86 0.87 0.77 0.77 6.6 0.01 NA 0.77
UWES9_04 0.87 0.88 0.79 0.79 7.4 0.01 NA 0.79
UWES9_07 0.94 0.94 0.88 0.88 14.4 0.01 NA 0.88
Item statistics
n raw.r std.r r.cor r.drop mean sd
UWES9_03 246 0.95 0.95 0.93 0.89 4.8 1.6
UWES9_04 246 0.95 0.94 0.91 0.88 4.8 1.7
UWES9_07 246 0.90 0.91 0.83 0.80 5.5 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
UWES9_03 0.05 0.08 0.08 0.12 0.24 0.33 0.11 0.27
UWES9_04 0.04 0.11 0.09 0.13 0.20 0.31 0.12 0.27
UWES9_07 0.02 0.03 0.04 0.11 0.17 0.41 0.21 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
UWES9_03 Utrecht Work Engagement Scale: I am enthusiastic about my job. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 4.8 1.6 7 ▁▂▂▃▁▆▇▃
UWES9_04 Utrecht Work Engagement Scale: My job inspires me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 4.8 1.7 7 ▁▃▂▃▁▅▇▃
UWES9_07 Utrecht Work Engagement Scale: I am proud of the work that I do. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 6 7 5.5 1.4 7 ▁▁▁▂▁▃▇▅

Scale: engagement_absorption

Overview

Reliability: Cronbach’s α [95% CI] = 0.8 [0.76;0.84].

Missing: 90.

Likert plot of scale engagement_absorption items

Likert plot of scale engagement_absorption items

Distribution of scale engagement_absorption

Distribution of scale engagement_absorption

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.76 0.8 0.84
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.8 0.8 0.73 0.57 4 0.02 4.7 1.3 0.6
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
UWES9_06 0.75 0.75 0.60 0.60 3.0 0.03 NA 0.60
UWES9_08 0.65 0.66 0.49 0.49 1.9 0.04 NA 0.49
UWES9_09 0.77 0.77 0.63 0.63 3.4 0.03 NA 0.63
Item statistics
n raw.r std.r r.cor r.drop mean sd
UWES9_06 246 0.83 0.83 0.70 0.62 5.0 1.5
UWES9_08 246 0.88 0.88 0.80 0.71 4.9 1.6
UWES9_09 246 0.83 0.82 0.67 0.60 4.2 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
UWES9_06 0.03 0.07 0.08 0.11 0.24 0.37 0.10 0.27
UWES9_08 0.04 0.08 0.07 0.11 0.26 0.36 0.09 0.27
UWES9_09 0.04 0.17 0.17 0.12 0.26 0.19 0.05 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
UWES9_06 Utrecht Work Engagement Scale: I feel happy when I am working intensely. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5.0 7 5.0 1.5 7 ▁▂▂▂▁▅▇▂
UWES9_08 Utrecht Work Engagement Scale: I am immersed in my work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5.0 7 4.9 1.6 7 ▁▂▂▂▁▆▇▂
UWES9_09 Utrecht Work Engagement Scale: I get carried away when I am working. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 4.5 7 4.2 1.6 7 ▁▅▆▃▁▇▆▂

Scale: work_gratitude_grateful_appraisals

Overview

Reliability: Cronbach’s α [95% CI] = 0.9 [0.88;0.92].

Missing: 91.

Likert plot of scale work_gratitude_grateful_appraisals items

Likert plot of scale work_gratitude_grateful_appraisals items

Distribution of scale work_gratitude_grateful_appraisals

Distribution of scale work_gratitude_grateful_appraisals

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.88 0.9 0.92
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.9 0.9 0.86 0.75 9 0.01 5 1.4 0.74
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
WGS_01 0.84 0.85 0.74 0.74 5.6 0.02 NA 0.74
WGS_02 0.85 0.85 0.74 0.74 5.6 0.02 NA 0.74
WGS_03 0.87 0.88 0.78 0.78 7.1 0.01 NA 0.78
Item statistics
n raw.r std.r r.cor r.drop mean sd
WGS_01 245 0.92 0.92 0.86 0.81 5.0 1.5
WGS_02 245 0.92 0.92 0.86 0.81 4.7 1.7
WGS_03 245 0.90 0.90 0.82 0.78 5.2 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
WGS_01 0.03 0.06 0.08 0.14 0.22 0.32 0.15 0.27
WGS_02 0.04 0.11 0.10 0.13 0.25 0.22 0.13 0.27
WGS_03 0.02 0.06 0.10 0.09 0.20 0.39 0.15 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
WGS_01 Work Gratitude Scale: Right now, I have so much at work to be thankful for. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 5.0 1.5 7 ▁▂▂▃▁▆▇▃
WGS_02 Work Gratitude Scale: At this present time, if I had to list everything that I felt grateful for at work, it would be a very long list. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 4.7 1.7 7 ▁▃▃▅▁▇▇▅
WGS_03 Work Gratitude Scale: At the present time, life has been good to me at work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 6 7 5.2 1.5 7 ▁▁▂▂▁▅▇▃

Scale: work_gratitude_gratitude_toward_others

Overview

Reliability: Cronbach’s α [95% CI] = 0.89 [0.87;0.91].

Missing: 91.

Likert plot of scale work_gratitude_gratitude_toward_others items

Likert plot of scale work_gratitude_gratitude_toward_others items

Distribution of scale work_gratitude_gratitude_toward_others

Distribution of scale work_gratitude_gratitude_toward_others

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.87 0.89 0.91
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.89 0.89 0.87 0.68 8.5 0.01 5.1 1.3 0.7
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
WGS_04 0.88 0.88 0.83 0.71 7.2 0.01 0 0.71
WGS_05 0.86 0.86 0.81 0.67 6.0 0.01 0 0.70
WGS_06 0.84 0.85 0.79 0.65 5.6 0.01 0 0.67
WGS_07 0.87 0.87 0.82 0.69 6.8 0.01 0 0.70
Item statistics
n raw.r std.r r.cor r.drop mean sd
WGS_04 245 0.86 0.85 0.77 0.73 5.0 1.6
WGS_05 245 0.88 0.88 0.83 0.78 5.4 1.4
WGS_06 245 0.90 0.90 0.86 0.81 4.9 1.5
WGS_07 245 0.85 0.86 0.79 0.74 5.2 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
WGS_04 0.02 0.08 0.10 0.12 0.21 0.31 0.16 0.27
WGS_05 0.02 0.03 0.06 0.13 0.18 0.41 0.18 0.27
WGS_06 0.01 0.07 0.11 0.16 0.22 0.31 0.11 0.27
WGS_07 0.02 0.05 0.04 0.13 0.24 0.36 0.15 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
WGS_04 Work Gratitude Scale: Currently, I couldn’t have gotten where I am today at work without the help of many people. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 5.0 1.6 7 ▁▂▂▃▁▆▇▅
WGS_05 Work Gratitude Scale: Although I think it’s important to feel good about my current work accomplishments, I think that it’s also important to remember how others have contributed to my accomplishments. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 6 7 5.4 1.4 7 ▁▁▁▂▁▃▇▃
WGS_06 Work Gratitude Scale: Although I’m basically in control of my work at the present time, I can’t help but think about all those who have supported me and helped me along the way. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 4.9 1.5 7 ▁▂▃▅▁▆▇▃
WGS_07 Work Gratitude Scale: Right now, I feel deeply appreciative for the things others have done for me at work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 6 7 5.2 1.4 7 ▁▁▁▃▁▆▇▃

Scale: work_gratitude_intentional_attitude_of_gratitude

Overview

Reliability: Cronbach’s α [95% CI] = 0.81 [0.78;0.84].

Missing: 91.

Likert plot of scale work_gratitude_intentional_attitude_of_gratitude items

Likert plot of scale work_gratitude_intentional_attitude_of_gratitude items

Distribution of scale work_gratitude_intentional_attitude_of_gratitude

Distribution of scale work_gratitude_intentional_attitude_of_gratitude

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.78 0.81 0.84
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.81 0.81 0.75 0.59 4.4 0.02 5 1.2 0.59
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
WGS_08 0.73 0.74 0.58 0.58 2.8 0.03 NA 0.58
WGS_09 0.75 0.76 0.61 0.61 3.1 0.03 NA 0.61
WGS_10 0.74 0.74 0.59 0.59 2.9 0.03 NA 0.59
Item statistics
n raw.r std.r r.cor r.drop mean sd
WGS_08 245 0.86 0.86 0.75 0.67 4.8 1.4
WGS_09 245 0.86 0.85 0.72 0.65 4.9 1.5
WGS_10 245 0.84 0.86 0.74 0.67 5.3 1.2
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
WGS_08 0.02 0.07 0.08 0.22 0.25 0.25 0.10 0.27
WGS_09 0.03 0.06 0.09 0.16 0.25 0.27 0.14 0.27
WGS_10 0.00 0.06 0.03 0.13 0.29 0.38 0.11 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
WGS_08 Work Gratitude Scale: Currently, I think that it’s important to “Stop and smell the roses” as it pertains to my work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 4.8 1.4 7 ▁▂▂▇▁▇▇▃
WGS_09 Work Gratitude Scale: Currently, I believe that it’s important to pause often to “count my blessings” at work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 4.9 1.5 7 ▁▂▂▅▁▇▇▅
WGS_10 Work Gratitude Scale: Right now, I think it’s important to enjoy the simple things that pertain to my work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 2 5 7 5.3 1.2 7 ▁▁▁▂▆▁▇▂

Scale: distinctness

Overview

Reliability: Cronbach’s α [95% CI] = 0.89 [0.87;0.91].

Missing: 0.

Likert plot of scale distinctness items

Likert plot of scale distinctness items

Distribution of scale distinctness

Distribution of scale distinctness

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.87 0.89 0.91
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.89 0.89 0.9 0.5 8.1 0.01 4 1.2 0.49
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
CQ_01_R 0.87 0.87 0.87 0.48 6.5 0.01 0.01 0.48
CQ_03 0.88 0.89 0.89 0.53 7.8 0.01 0.01 0.49
CQ_06_R 0.88 0.88 0.89 0.52 7.7 0.01 0.01 0.49
CQ_08_R 0.86 0.86 0.86 0.48 6.4 0.01 0.01 0.48
CQ_10_R 0.88 0.88 0.88 0.52 7.5 0.01 0.01 0.49
CQ_12_R 0.88 0.88 0.88 0.50 7.1 0.01 0.01 0.49
CQ_14 0.87 0.87 0.88 0.50 7.0 0.01 0.01 0.48
CQ_15 0.87 0.88 0.88 0.50 7.1 0.01 0.01 0.48
Item statistics
n raw.r std.r r.cor r.drop mean sd
CQ_01_R 336 0.82 0.83 0.81 0.76 3.5 1.5
CQ_03 336 0.67 0.67 0.60 0.57 5.0 1.6
CQ_06_R 336 0.69 0.69 0.62 0.58 4.0 1.6
CQ_08_R 336 0.84 0.85 0.84 0.78 3.4 1.6
CQ_10_R 336 0.71 0.71 0.65 0.61 4.4 1.6
CQ_12_R 336 0.74 0.75 0.73 0.66 3.0 1.5
CQ_14 336 0.78 0.77 0.73 0.69 3.8 1.8
CQ_15 336 0.76 0.76 0.71 0.67 4.6 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
CQ_01_R 0.07 0.24 0.26 0.12 0.19 0.10 0.01 0
CQ_03 0.04 0.07 0.06 0.11 0.23 0.38 0.11 0
CQ_06_R 0.03 0.21 0.17 0.14 0.21 0.21 0.03 0
CQ_08_R 0.08 0.27 0.24 0.10 0.19 0.10 0.02 0
CQ_10_R 0.04 0.11 0.18 0.12 0.23 0.26 0.06 0
CQ_12_R 0.11 0.36 0.26 0.10 0.09 0.08 0.01 0
CQ_14 0.12 0.22 0.15 0.07 0.24 0.17 0.04 0
CQ_15 0.05 0.10 0.10 0.13 0.29 0.30 0.04 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
CQ_01_R Chronotype Questionnaire: I can work efficiently at any time of the day haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 3 7 3.5 1.5 7 ▂▇▇▃▁▆▃▁
CQ_03 Chronotype Questionnaire: There are moments during the day where I would prefer to avoid any work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 5.0 1.6 7 ▁▂▁▂▁▅▇▂
CQ_06_R Chronotype Questionnaire: My mood stays the same throughout the day. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 4 7 4.0 1.6 7 ▁▇▆▆▁▇▇▁
CQ_08_R Chronotype Questionnaire: I can focus at any time of the day. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 3 7 3.4 1.6 7 ▂▇▇▃▁▆▃▁
CQ_10_R Chronotype Questionnaire: At any time of the day, my motivation is the same. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.4 1.6 7 ▁▃▆▃▁▇▇▂
CQ_12_R Chronotype Questionnaire: If I need it, I’m able to concentrate at any time of the day. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 3 7 3.0 1.5 7 ▂▇▆▂▁▂▂▁
CQ_14 Chronotype Questionnaire: There are moments during the day where I feel unable to do anything. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.8 1.8 7 ▃▇▅▂▁▇▆▁
CQ_15 Chronotype Questionnaire: There are moments during the day when it is harder for me to think. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.6 1.6 7 ▂▂▂▃▁▇▇▁

Scale: morningness-eveningness

Overview

Reliability: Cronbach’s α [95% CI] = 0.87 [0.85;0.89].

Missing: 0.

Likert plot of scale morningness-eveningness items

Likert plot of scale morningness-eveningness items

Distribution of scale morningness-eveningness

Distribution of scale morningness-eveningness

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.85 0.87 0.89
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.87 0.87 0.88 0.46 6.9 0.01 3.9 1.2 0.45
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
CQ_02_R 0.84 0.85 0.85 0.44 5.5 0.01 0.01 0.43
CQ_04 0.87 0.87 0.87 0.49 6.8 0.01 0.01 0.47
CQ_05 0.85 0.85 0.87 0.46 5.9 0.01 0.02 0.45
CQ_07_R 0.87 0.87 0.88 0.50 6.9 0.01 0.02 0.47
CQ_09 0.86 0.86 0.87 0.47 6.1 0.01 0.02 0.45
CQ_11_R 0.85 0.85 0.86 0.45 5.8 0.01 0.02 0.43
CQ_13_R 0.86 0.86 0.86 0.47 6.2 0.01 0.01 0.45
CQ_16 0.84 0.85 0.85 0.44 5.5 0.01 0.02 0.45
Item statistics
n raw.r std.r r.cor r.drop mean sd
CQ_02_R 336 0.82 0.82 0.81 0.75 3.9 1.6
CQ_04 336 0.62 0.62 0.56 0.50 3.4 1.7
CQ_05 336 0.75 0.75 0.70 0.66 4.2 1.7
CQ_07_R 336 0.63 0.61 0.52 0.49 4.0 1.9
CQ_09 336 0.72 0.72 0.67 0.62 4.0 1.6
CQ_11_R 336 0.76 0.77 0.73 0.68 3.7 1.6
CQ_13_R 336 0.71 0.71 0.68 0.61 4.2 1.7
CQ_16 336 0.82 0.82 0.81 0.75 4.0 1.8
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
CQ_02_R 0.06 0.21 0.15 0.24 0.15 0.15 0.05 0
CQ_04 0.11 0.30 0.17 0.08 0.22 0.12 0.01 0
CQ_05 0.05 0.18 0.10 0.21 0.15 0.22 0.09 0
CQ_07_R 0.07 0.22 0.18 0.10 0.12 0.20 0.10 0
CQ_09 0.03 0.19 0.18 0.22 0.12 0.20 0.05 0
CQ_11_R 0.06 0.23 0.21 0.18 0.14 0.13 0.04 0
CQ_13_R 0.04 0.13 0.23 0.16 0.15 0.21 0.09 0
CQ_16 0.09 0.19 0.15 0.10 0.21 0.19 0.06 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
CQ_02_R Chronotype Questionnaire: I feel I can think the best in the morning. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 4 7 3.9 1.6 7 ▂▇▅▇▁▅▅▂
CQ_04 Chronotype Questionnaire: I feel drowsy for a long time after awakening. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.4 1.7 7 ▃▇▅▂▁▆▃▁
CQ_05 Chronotype Questionnaire: If I were to study anything by myself, I would rather do it in the evening. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.2 1.7 7 ▂▇▃▇▁▅▇▃
CQ_07_R Chronotype Questionnaire: I like to get up earlier then necessary, e.g. in order to prepare things for the whole day. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 4 7 4.0 1.9 7 ▃▇▇▃▁▅▇▃
CQ_09 Chronotype Questionnaire: My work goes better in the afternoon than before noon. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.0 1.6 7 ▁▇▇▇▁▅▇▂
CQ_11_R Chronotype Questionnaire: I am usually in an excellent mood in the morning. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 3 7 3.7 1.6 7 ▂▇▇▆▁▅▅▁
CQ_13_R Chronotype Questionnaire: I am in my best form in the morning, in the course of the day my energy runs out. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 4 7 4.2 1.7 7 ▂▅▇▆▁▅▇▃
CQ_16 Chronotype Questionnaire: I feel sluggish in the morning and I warm up slowly during the day. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.0 1.8 7 ▃▇▆▃▁▇▇▂

Scale: depression

Overview

Reliability: Cronbach’s α [95% CI] = 0.96 [0.95;0.96].

Missing: 0.

Likert plot of scale depression items

Likert plot of scale depression items

Distribution of scale depression

Distribution of scale depression

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.95 0.96 0.96
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.96 0.96 0.97 0.53 22 0 2.7 1.1 0.53
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
CESD_01 0.96 0.96 0.96 0.53 21 0 0.01 0.52
CESD_02 0.96 0.96 0.97 0.54 22 0 0.01 0.54
CESD_03 0.95 0.95 0.96 0.52 21 0 0.01 0.52
CESD_04_R 0.96 0.96 0.96 0.53 21 0 0.01 0.52
CESD_05 0.96 0.96 0.97 0.53 22 0 0.01 0.53
CESD_06 0.95 0.95 0.96 0.52 20 0 0.01 0.51
CESD_07 0.96 0.96 0.97 0.53 22 0 0.02 0.53
CESD_08_R 0.96 0.96 0.96 0.54 22 0 0.01 0.53
CESD_09 0.95 0.95 0.96 0.52 21 0 0.01 0.52
CESD_10 0.96 0.95 0.96 0.53 21 0 0.01 0.52
CESD_11 0.96 0.96 0.97 0.54 22 0 0.01 0.53
CESD_12_R 0.96 0.96 0.96 0.53 21 0 0.01 0.53
CESD_13 0.96 0.96 0.96 0.53 21 0 0.02 0.53
CESD_14 0.95 0.95 0.96 0.52 21 0 0.01 0.52
CESD_15 0.96 0.96 0.97 0.54 23 0 0.01 0.53
CESD_16_R 0.96 0.96 0.96 0.53 21 0 0.01 0.53
CESD_17 0.96 0.96 0.97 0.54 22 0 0.01 0.53
CESD_18 0.95 0.95 0.96 0.52 20 0 0.01 0.52
CESD_19 0.95 0.95 0.96 0.52 21 0 0.01 0.52
CESD_20 0.95 0.95 0.96 0.52 21 0 0.01 0.52
Item statistics
n raw.r std.r r.cor r.drop mean sd
CESD_01 336 0.71 0.73 0.71 0.69 2.4 1.2
CESD_02 336 0.65 0.66 0.64 0.61 2.2 1.4
CESD_03 336 0.84 0.84 0.84 0.82 2.5 1.6
CESD_04_R 336 0.74 0.73 0.72 0.71 3.0 1.6
CESD_05 336 0.68 0.68 0.66 0.64 2.9 1.5
CESD_06 336 0.88 0.88 0.88 0.87 2.7 1.7
CESD_07 336 0.70 0.70 0.68 0.66 3.2 1.6
CESD_08_R 336 0.65 0.64 0.62 0.60 3.5 1.6
CESD_09 336 0.86 0.85 0.85 0.83 2.5 1.7
CESD_10 336 0.76 0.77 0.75 0.73 2.3 1.4
CESD_11 336 0.65 0.65 0.62 0.60 3.2 1.6
CESD_12_R 336 0.75 0.75 0.74 0.72 3.2 1.5
CESD_13 336 0.73 0.74 0.72 0.70 2.7 1.5
CESD_14 336 0.80 0.79 0.78 0.77 2.8 1.7
CESD_15 336 0.57 0.59 0.56 0.53 2.3 1.1
CESD_16_R 336 0.76 0.75 0.75 0.73 3.2 1.5
CESD_17 336 0.62 0.63 0.60 0.59 1.8 1.2
CESD_18 336 0.87 0.87 0.87 0.85 2.9 1.5
CESD_19 336 0.79 0.80 0.79 0.76 2.4 1.4
CESD_20 336 0.83 0.83 0.83 0.81 2.9 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
CESD_01 0.29 0.33 0.18 0.15 0.03 0.01 0.01 0
CESD_02 0.42 0.26 0.12 0.11 0.05 0.03 0.00 0
CESD_03 0.38 0.24 0.12 0.12 0.07 0.04 0.03 0
CESD_04_R 0.19 0.23 0.23 0.18 0.10 0.05 0.02 0
CESD_05 0.18 0.32 0.17 0.16 0.10 0.06 0.01 0
CESD_06 0.30 0.26 0.14 0.13 0.09 0.04 0.04 0
CESD_07 0.17 0.23 0.18 0.15 0.16 0.09 0.02 0
CESD_08_R 0.11 0.20 0.21 0.21 0.14 0.10 0.03 0
CESD_09 0.42 0.22 0.12 0.10 0.07 0.03 0.04 0
CESD_10 0.35 0.29 0.15 0.12 0.05 0.02 0.01 0
CESD_11 0.13 0.26 0.23 0.18 0.12 0.07 0.02 0
CESD_12_R 0.13 0.22 0.26 0.19 0.12 0.07 0.01 0
CESD_13 0.25 0.25 0.19 0.19 0.07 0.04 0.01 0
CESD_14 0.29 0.23 0.15 0.13 0.11 0.05 0.02 0
CESD_15 0.26 0.41 0.18 0.12 0.02 0.01 0.00 0
CESD_16_R 0.14 0.23 0.25 0.17 0.12 0.07 0.01 0
CESD_17 0.57 0.24 0.08 0.06 0.04 0.01 0.00 0
CESD_18 0.15 0.32 0.23 0.13 0.08 0.05 0.03 0
CESD_19 0.31 0.34 0.15 0.12 0.06 0.02 0.01 0
CESD_20 0.19 0.30 0.18 0.16 0.09 0.06 0.02 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
CESD_01 Center for Epidemiological Studies Depression Scale: I was bothered by things that usually don’t bother me. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.4 1.2 7 ▇▇▅▃▁▁▁▁
CESD_02 Center for Epidemiological Studies Depression Scale: I did not feel like eating; my appetite was poor. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.2 1.4 7 ▇▅▂▂▁▁▁▁
CESD_03 Center for Epidemiological Studies Depression Scale: I felt that I could not shake off the blues even with help from my family or friends. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.5 1.6 7 ▇▅▂▂▁▂▁▁
CESD_04_R Center for Epidemiological Studies Depression Scale: I felt that I was just as good as other people. haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3.0 7 3.0 1.6 7 ▆▇▇▆▁▃▂▁
CESD_05 Center for Epidemiological Studies Depression Scale: I had trouble keeping my mind on what I was doing. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.9 1.5 7 ▅▇▅▃▁▂▂▁
CESD_06 Center for Epidemiological Studies Depression Scale: I felt depressed. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.7 1.7 7 ▇▇▃▃▁▂▁▁
CESD_07 Center for Epidemiological Studies Depression Scale: I felt that everything I did was an effort. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 3.2 1.6 7 ▆▇▆▆▁▆▃▁
CESD_08_R Center for Epidemiological Studies Depression Scale: I felt hopeful about the future. haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3.0 7 3.5 1.6 7 ▅▇▇▇▁▆▃▁
CESD_09 Center for Epidemiological Studies Depression Scale: I thought my life had been a failure. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.5 1.7 7 ▇▅▂▂▁▁▁▁
CESD_10 Center for Epidemiological Studies Depression Scale: I felt fearful. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.3 1.4 7 ▇▆▃▃▁▁▁▁
CESD_11 Center for Epidemiological Studies Depression Scale: My sleep was restless. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 3.2 1.6 7 ▃▇▇▆▁▃▂▁
CESD_12_R Center for Epidemiological Studies Depression Scale: I was happy. haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3.0 7 3.2 1.5 7 ▅▇▇▆▁▃▂▁
CESD_13 Center for Epidemiological Studies Depression Scale: I talked less than usual. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.5 7 2.7 1.5 7 ▇▇▆▆▁▂▂▁
CESD_14 Center for Epidemiological Studies Depression Scale: I felt lonely. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.8 1.7 7 ▇▆▅▃▁▃▂▁
CESD_15 Center for Epidemiological Studies Depression Scale: People were unfriendly. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 6 2.3 1.1 7 ▅▇▁▃▂▁▁▁
CESD_16_R Center for Epidemiological Studies Depression Scale: I enjoyed life. haven_labelled 7. never,
6. rarely,
5. occasionally,
4. sometimes,
3. often,
2. very often,
1. most of the time
0 1 1 3.0 7 3.2 1.5 7 ▅▇▇▆▁▃▂▁
CESD_17 Center for Epidemiological Studies Depression Scale: I had crying spells. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 1.0 7 1.8 1.2 7 ▇▃▁▁▁▁▁▁
CESD_18 Center for Epidemiological Studies Depression Scale: I felt sad. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 2.9 1.5 7 ▃▇▆▃▁▂▁▁
CESD_19 Center for Epidemiological Studies Depression Scale: I felt that people dislike me. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 2.0 7 2.4 1.4 7 ▇▇▃▃▁▂▁▁
CESD_20 Center for Epidemiological Studies Depression Scale: I could not get “going”. haven_labelled 1. never,
2. rarely,
3. occasionally,
4. sometimes,
5. often,
6. very often,
7. most of the time
0 1 1 3.0 7 2.9 1.6 7 ▅▇▅▅▁▂▂▁

Scale: agreeableness

Overview

Reliability: Cronbach’s α [95% CI] = 0.79 [0.76;0.83].

Missing: 0.

Likert plot of scale agreeableness items

Likert plot of scale agreeableness items

Distribution of scale agreeableness

Distribution of scale agreeableness

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.76 0.79 0.83
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.79 0.79 0.81 0.28 3.8 0.02 4.7 0.89 0.26
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_01 0.77 0.77 0.78 0.27 3.4 0.02 0.01 0.27
HEXACO_03_R 0.77 0.77 0.79 0.27 3.4 0.02 0.01 0.25
HEXACO_05_R 0.79 0.79 0.80 0.29 3.7 0.02 0.01 0.28
HEXACO_07_R 0.77 0.77 0.79 0.28 3.4 0.02 0.01 0.27
HEXACO_09 0.76 0.76 0.78 0.26 3.2 0.02 0.01 0.25
HEXACO_11 0.78 0.78 0.80 0.28 3.5 0.02 0.01 0.25
HEXACO_13 0.78 0.79 0.81 0.29 3.7 0.02 0.01 0.29
HEXACO_15 0.77 0.77 0.79 0.27 3.4 0.02 0.01 0.25
HEXACO_17 0.77 0.77 0.80 0.28 3.4 0.02 0.01 0.25
HEXACO_19_R 0.77 0.77 0.80 0.28 3.4 0.02 0.02 0.25
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_01 336 0.62 0.61 0.58 0.49 4.1 1.7
HEXACO_03_R 336 0.61 0.61 0.55 0.48 5.2 1.5
HEXACO_05_R 336 0.54 0.52 0.44 0.38 4.3 1.7
HEXACO_07_R 336 0.59 0.60 0.56 0.48 5.6 1.4
HEXACO_09 336 0.68 0.67 0.66 0.57 4.2 1.6
HEXACO_11 336 0.56 0.57 0.50 0.44 4.7 1.4
HEXACO_13 336 0.49 0.50 0.40 0.36 4.6 1.3
HEXACO_15 336 0.60 0.62 0.57 0.49 5.0 1.4
HEXACO_17 336 0.60 0.61 0.54 0.48 4.4 1.4
HEXACO_19_R 336 0.60 0.60 0.53 0.48 4.8 1.5
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_01 0.06 0.14 0.21 0.12 0.21 0.20 0.06 0
HEXACO_03_R 0.01 0.06 0.13 0.11 0.14 0.38 0.18 0
HEXACO_05_R 0.03 0.14 0.25 0.11 0.12 0.26 0.08 0
HEXACO_07_R 0.00 0.02 0.10 0.08 0.13 0.39 0.28 0
HEXACO_09 0.05 0.12 0.16 0.18 0.27 0.16 0.06 0
HEXACO_11 0.02 0.07 0.12 0.15 0.30 0.28 0.06 0
HEXACO_13 0.02 0.05 0.15 0.20 0.30 0.24 0.03 0
HEXACO_15 0.01 0.06 0.08 0.17 0.25 0.34 0.09 0
HEXACO_17 0.01 0.09 0.21 0.17 0.27 0.21 0.04 0
HEXACO_19_R 0.01 0.07 0.17 0.13 0.20 0.32 0.11 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_01 HEXACO-60: I rarely hold a grudge, even against people who have badly wronged me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.1 1.7 7 ▂▅▇▅▁▇▇▂
HEXACO_03_R HEXACO-60: People sometimes tell me that I am too critical of others. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.2 1.5 7 ▁▁▃▂▁▃▇▃
HEXACO_05_R HEXACO-60: People sometimes tell me that I’m too stubborn. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 4 7 4.3 1.7 7 ▁▅▇▃▁▃▇▂
HEXACO_07_R HEXACO-60: People think of me as someone who has a quick temper. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.6 1.4 7 ▁▁▂▂▁▃▇▆
HEXACO_09 HEXACO-60: My attitude toward people who have treated me badly is “forgive and forget”. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.2 1.6 7 ▂▃▅▅▁▇▅▂
HEXACO_11 HEXACO-60: I tend to be lenient in judging other people. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.7 1.4 7 ▁▂▃▅▁▇▇▂
HEXACO_13 HEXACO-60: I am usually quite flexible in my opinions when people disagree with me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.6 1.3 7 ▁▂▃▅▁▇▆▁
HEXACO_15 HEXACO-60: Most people tend to get angry more quickly than I do. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 5.0 1.4 7 ▁▁▂▃▁▆▇▂
HEXACO_17 HEXACO-60: Even when people make a lot of mistakes, I rarely say anything negative. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.4 1.4 7 ▁▃▆▅▁▇▆▁
HEXACO_19_R HEXACO-60: When people tell me that I’m wrong, my first reaction is to argue with them. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.8 1.5 7 ▁▂▅▃▁▅▇▃

Scale: honesty-humility

Overview

Reliability: Cronbach’s α [95% CI] = 0.77 [0.73;0.81].

Missing: 0.

Likert plot of scale honesty-humility items

Likert plot of scale honesty-humility items

Distribution of scale honesty-humility

Distribution of scale honesty-humility

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.73 0.77 0.81
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.77 0.77 0.81 0.25 3.3 0.02 5.1 0.94 0.2
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_02 0.75 0.75 0.79 0.25 3.1 0.02 0.02 0.19
HEXACO_04_R 0.74 0.74 0.77 0.24 2.8 0.02 0.02 0.20
HEXACO_06 0.76 0.76 0.80 0.26 3.2 0.02 0.03 0.20
HEXACO_08_R 0.76 0.76 0.78 0.26 3.1 0.02 0.02 0.21
HEXACO_10_R 0.74 0.74 0.78 0.24 2.8 0.02 0.03 0.18
HEXACO_12 0.75 0.75 0.79 0.25 3.0 0.02 0.02 0.20
HEXACO_14_R 0.76 0.76 0.80 0.26 3.2 0.02 0.03 0.20
HEXACO_16_R 0.75 0.75 0.77 0.25 3.0 0.02 0.02 0.20
HEXACO_18 0.76 0.76 0.80 0.26 3.1 0.02 0.02 0.21
HEXACO_20_R 0.73 0.73 0.76 0.23 2.7 0.02 0.02 0.19
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_02 336 0.56 0.55 0.48 0.41 4.6 1.8
HEXACO_04_R 336 0.67 0.64 0.63 0.53 5.1 2.0
HEXACO_06 336 0.48 0.48 0.38 0.33 4.1 1.7
HEXACO_08_R 336 0.49 0.52 0.47 0.36 5.6 1.4
HEXACO_10_R 336 0.64 0.65 0.60 0.53 5.0 1.5
HEXACO_12 336 0.59 0.58 0.52 0.46 5.3 1.6
HEXACO_14_R 336 0.50 0.51 0.42 0.35 4.8 1.7
HEXACO_16_R 336 0.54 0.58 0.54 0.42 5.6 1.5
HEXACO_18 336 0.52 0.52 0.43 0.37 5.1 1.7
HEXACO_20_R 336 0.69 0.68 0.67 0.58 5.7 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_02 0.04 0.12 0.15 0.11 0.18 0.26 0.15 0
HEXACO_04_R 0.07 0.08 0.11 0.10 0.05 0.22 0.38 0
HEXACO_06 0.05 0.16 0.20 0.13 0.20 0.20 0.06 0
HEXACO_08_R 0.01 0.04 0.04 0.14 0.10 0.38 0.29 0
HEXACO_10_R 0.01 0.07 0.15 0.10 0.19 0.33 0.17 0
HEXACO_12 0.02 0.06 0.08 0.10 0.16 0.35 0.24 0
HEXACO_14_R 0.02 0.08 0.15 0.15 0.14 0.29 0.17 0
HEXACO_16_R 0.01 0.03 0.08 0.11 0.12 0.31 0.34 0
HEXACO_18 0.04 0.07 0.09 0.10 0.12 0.40 0.17 0
HEXACO_20_R 0.01 0.07 0.09 0.07 0.05 0.25 0.46 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_02 HEXACO-60: I wouldn’t use flattery to get a raise or promotion at work, even if I thought it would succeed. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.6 1.8 7 ▁▃▅▃▁▆▇▅
HEXACO_04_R HEXACO-60: If I knew that I could never get caught, I would be willing to steal a million dollars. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.1 2.0 7 ▂▂▂▂▁▁▅▇
HEXACO_06 HEXACO-60: Having a lot of money is not especially important to me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.1 1.7 7 ▂▆▇▆▁▇▇▂
HEXACO_08_R HEXACO-60: I think that I am entitled to more respect than the average person is. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.6 1.4 7 ▁▁▁▃▁▂▇▆
HEXACO_10_R HEXACO-60: If I want something from someone, I will laugh at that person’s worst jokes. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 5.0 1.5 7 ▁▂▃▂▁▅▇▅
HEXACO_12 HEXACO-60: I would never accept a bribe, even if it were very large. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.3 1.6 7 ▁▁▂▂▁▃▇▆
HEXACO_14_R HEXACO-60: I would get a lot of pleasure from owning expensive luxury goods. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 4.8 1.7 7 ▁▂▅▅▁▃▇▅
HEXACO_16_R HEXACO-60: I want people to know that I am an important person of high status. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.6 1.5 7 ▁▁▂▂▁▃▇▇
HEXACO_18 HEXACO-60: I wouldn’t pretend to like someone just to get that person to do favors for me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.1 1.7 7 ▁▂▂▂▁▂▇▃
HEXACO_20_R HEXACO-60: I’d be tempted to use counterfeit money, if I were sure I could get away with it. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.7 1.7 7 ▁▁▂▁▁▁▅▇

Scale: conscientiousness

Overview

Reliability: Cronbach’s α [95% CI] = 0.81 [0.78;0.84].

Missing: 0.

Likert plot of scale conscientiousness items

Likert plot of scale conscientiousness items

Distribution of scale conscientiousness

Distribution of scale conscientiousness

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.78 0.81 0.84
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.81 0.81 0.83 0.31 4.4 0.02 5.2 0.86 0.31
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
HEXACO_22 0.80 0.80 0.82 0.31 4.1 0.02 0.02 0.34
HEXACO_26_R 0.79 0.80 0.81 0.30 3.9 0.02 0.02 0.31
HEXACO_21 0.78 0.79 0.80 0.30 3.8 0.02 0.02 0.31
HEXACO_25_R 0.78 0.79 0.80 0.29 3.7 0.02 0.02 0.31
HEXACO_23_R 0.78 0.79 0.81 0.30 3.8 0.02 0.02 0.27
HEXACO_27 0.80 0.81 0.82 0.32 4.2 0.02 0.02 0.33
HEXACO_29 0.83 0.83 0.83 0.35 4.8 0.01 0.01 0.34
HEXACO_24_R 0.79 0.79 0.80 0.30 3.8 0.02 0.01 0.31
HEXACO_28_R 0.78 0.79 0.80 0.29 3.8 0.02 0.02 0.29
HEXACO_30_R 0.78 0.79 0.80 0.30 3.8 0.02 0.01 0.31
Item statistics
n raw.r std.r r.cor r.drop mean sd
HEXACO_22 336 0.54 0.57 0.49 0.44 5.4 1.2
HEXACO_26_R 336 0.62 0.63 0.57 0.50 5.4 1.4
HEXACO_21 336 0.68 0.67 0.64 0.57 5.2 1.4
HEXACO_25_R 336 0.71 0.69 0.66 0.60 5.0 1.6
HEXACO_23_R 336 0.66 0.67 0.62 0.56 5.6 1.3
HEXACO_27 336 0.51 0.55 0.46 0.41 5.5 1.1
HEXACO_29 336 0.39 0.36 0.24 0.20 3.9 1.7
HEXACO_24_R 336 0.66 0.66 0.63 0.55 5.0 1.5
HEXACO_28_R 336 0.67 0.67 0.64 0.57 5.4 1.4
HEXACO_30_R 336 0.66 0.66 0.63 0.55 4.9 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
HEXACO_22 0.01 0.02 0.05 0.10 0.26 0.42 0.15 0
HEXACO_26_R 0.00 0.04 0.11 0.10 0.15 0.38 0.23 0
HEXACO_21 0.01 0.05 0.09 0.09 0.25 0.33 0.18 0
HEXACO_25_R 0.01 0.07 0.18 0.09 0.14 0.32 0.19 0
HEXACO_23_R 0.00 0.04 0.06 0.05 0.18 0.42 0.26 0
HEXACO_27 0.00 0.01 0.05 0.09 0.27 0.41 0.18 0
HEXACO_29 0.08 0.21 0.13 0.14 0.26 0.15 0.04 0
HEXACO_24_R 0.01 0.05 0.12 0.16 0.19 0.32 0.15 0
HEXACO_28_R 0.00 0.02 0.14 0.08 0.15 0.38 0.24 0
HEXACO_30_R 0.00 0.06 0.16 0.17 0.18 0.32 0.12 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
HEXACO_22 HEXACO-60: I often push myself very hard when trying to achieve a goal. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.4 1.2 7 ▁▁▁▂▁▅▇▃
HEXACO_26_R HEXACO-60: I do only the minimum amount of work needed to get by. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 2 6 7 5.4 1.4 7 ▁▂▁▂▃▁▇▅
HEXACO_21 HEXACO-60: I plan ahead and organize things, to avoid scrambling at the last minute. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 6 7 5.2 1.4 7 ▁▁▂▂▁▆▇▅
HEXACO_25_R HEXACO-60: When working, I sometimes have difficulties due to being disorganized. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.0 1.6 7 ▁▂▅▂▁▃▇▅
HEXACO_23_R HEXACO-60: When working on something, I don’t pay much attention to small details. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 6 7 5.6 1.3 7 ▁▁▁▁▁▃▇▅
HEXACO_27 HEXACO-60: I always try to be accurate in my work, even at the expense of time. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 2 6 7 5.5 1.1 7 ▁▁▁▂▅▁▇▃
HEXACO_29 HEXACO-60: People often call me a perfectionist. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.9 1.7 7 ▂▆▃▅▁▇▅▂
HEXACO_24_R HEXACO-60: I make decisions based on the feeling of the moment rather than on careful thought. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 1 5 7 5.0 1.5 7 ▁▂▃▅▁▅▇▃
HEXACO_28_R HEXACO-60: I make a lot of mistakes because I don’t think before I act. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 2 6 7 5.4 1.4 7 ▁▃▁▂▃▁▇▅
HEXACO_30_R HEXACO-60: I prefer to do whatever comes to mind, rather than stick to a plan. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
0 1 2 5 7 4.9 1.4 7 ▂▃▁▅▅▁▇▃

Scale: authoritarianism

Overview

Reliability: Cronbach’s α [95% CI] = 0.87 [0.85;0.89].

Missing: 0.

Likert plot of scale authoritarianism items

Likert plot of scale authoritarianism items

Distribution of scale authoritarianism

Distribution of scale authoritarianism

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.85 0.87 0.89
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.87 0.87 0.87 0.43 6.8 0.01 3.5 1.1 0.42
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
KSA3_01 0.85 0.85 0.85 0.42 5.7 0.01 0.01 0.42
KSA3_02 0.86 0.86 0.86 0.44 6.3 0.01 0.01 0.43
KSA3_03 0.85 0.85 0.85 0.42 5.7 0.01 0.01 0.41
KSA3_04 0.86 0.87 0.86 0.44 6.4 0.01 0.01 0.44
KSA3_05 0.86 0.86 0.85 0.43 6.0 0.01 0.01 0.42
KSA3_06 0.85 0.85 0.85 0.42 5.8 0.01 0.01 0.42
KSA3_07 0.87 0.87 0.87 0.45 6.7 0.01 0.01 0.44
KSA3_08 0.85 0.85 0.85 0.42 5.8 0.01 0.01 0.42
KSA3_09 0.86 0.86 0.86 0.43 6.0 0.01 0.01 0.42
Item statistics
n raw.r std.r r.cor r.drop mean sd
KSA3_01 336 0.77 0.76 0.73 0.68 3.1 1.6
KSA3_02 336 0.66 0.65 0.58 0.55 3.6 1.6
KSA3_03 336 0.77 0.76 0.73 0.68 3.2 1.6
KSA3_04 336 0.63 0.64 0.57 0.53 4.9 1.5
KSA3_05 336 0.71 0.72 0.69 0.62 3.0 1.4
KSA3_06 336 0.74 0.74 0.72 0.66 2.6 1.5
KSA3_07 336 0.59 0.60 0.52 0.48 4.7 1.4
KSA3_08 336 0.75 0.75 0.72 0.67 3.3 1.5
KSA3_09 336 0.70 0.71 0.66 0.61 3.6 1.4
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
KSA3_01 0.16 0.29 0.15 0.18 0.12 0.09 0.01 0
KSA3_02 0.10 0.22 0.15 0.18 0.22 0.12 0.02 0
KSA3_03 0.18 0.24 0.17 0.16 0.15 0.09 0.01 0
KSA3_04 0.03 0.07 0.05 0.17 0.31 0.28 0.09 0
KSA3_05 0.15 0.31 0.19 0.20 0.10 0.05 0.00 0
KSA3_06 0.28 0.31 0.14 0.15 0.09 0.03 0.01 0
KSA3_07 0.02 0.07 0.08 0.24 0.25 0.25 0.09 0
KSA3_08 0.10 0.25 0.21 0.20 0.15 0.08 0.01 0
KSA3_09 0.05 0.23 0.20 0.25 0.16 0.09 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
KSA3_01 Authoritarianism Short Scale: We should take strong action against misfits and slackers in society. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.6 7 ▅▇▃▅▁▃▂▁
KSA3_02 Authoritarianism Short Scale: Troublemakers should be made to feel that they are not welcome in society. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.6 1.6 7 ▃▇▆▆▁▇▅▁
KSA3_03 Authoritarianism Short Scale: Rules in society should be enforced without pity. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.2 1.6 7 ▆▇▆▅▁▅▃▁
KSA3_04 Authoritarianism Short Scale: We need strong leaders so that we can live safely in society. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.9 1.5 7 ▁▂▁▅▁▇▇▂
KSA3_05 Authoritarianism Short Scale: People should leave important decisions in society to their leaders. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.0 1.4 7 ▃▇▅▅▁▂▁▁
KSA3_06 Authoritarianism Short Scale: We should be grateful for leaders telling us exactly what to do. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.6 1.5 7 ▇▇▃▃▁▂▁▁
KSA3_07 Authoritarianism Short Scale: Traditions should definitely be carried on and kept alive. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.7 1.4 7 ▁▂▂▇▁▇▇▃
KSA3_08 Authoritarianism Short Scale: Well-established behavior should not be questioned. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.5 7 ▃▇▇▆▁▅▂▁
KSA3_09 Authoritarianism Short Scale: It’s always best to do things in the usual way. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.6 1.4 7 ▂▇▆▇▁▅▃▁

Scale: obsessiveness-compulsiveness

Overview

Reliability: Cronbach’s α [95% CI] = 0.93 [0.92;0.94].

Missing: 0.

Likert plot of scale obsessiveness-compulsiveness items

Likert plot of scale obsessiveness-compulsiveness items

Distribution of scale obsessiveness-compulsiveness

Distribution of scale obsessiveness-compulsiveness

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.92 0.93 0.94
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.93 0.93 0.95 0.42 13 0.01 2.9 1.2 0.39
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
OCIR_01 0.92 0.92 0.94 0.42 12 0.01 0.01 0.40
OCIR_02 0.92 0.92 0.94 0.41 12 0.01 0.01 0.38
OCIR_03 0.92 0.92 0.94 0.42 12 0.01 0.01 0.39
OCIR_04 0.92 0.92 0.95 0.42 12 0.01 0.01 0.39
OCIR_05 0.92 0.92 0.94 0.42 12 0.01 0.01 0.39
OCIR_06 0.92 0.92 0.94 0.42 12 0.01 0.01 0.40
OCIR_07 0.93 0.93 0.94 0.42 12 0.01 0.01 0.40
OCIR_08 0.92 0.92 0.94 0.41 12 0.01 0.01 0.38
OCIR_09 0.92 0.92 0.94 0.42 12 0.01 0.01 0.39
OCIR_10 0.92 0.92 0.94 0.41 12 0.01 0.01 0.38
OCIR_11 0.92 0.92 0.94 0.42 12 0.01 0.01 0.39
OCIR_12 0.92 0.93 0.94 0.42 12 0.01 0.01 0.40
OCIR_13 0.92 0.93 0.95 0.42 12 0.01 0.01 0.40
OCIR_14 0.92 0.92 0.94 0.41 12 0.01 0.01 0.39
OCIR_15 0.92 0.92 0.94 0.42 12 0.01 0.01 0.39
OCIR_16 0.93 0.93 0.95 0.42 13 0.01 0.01 0.40
OCIR_17 0.92 0.92 0.94 0.41 12 0.01 0.01 0.39
OCIR_18 0.92 0.92 0.94 0.42 12 0.01 0.01 0.39
Item statistics
n raw.r std.r r.cor r.drop mean sd
OCIR_01 336 0.64 0.64 0.62 0.58 2.7 1.7
OCIR_02 336 0.74 0.73 0.72 0.69 3.4 1.9
OCIR_03 336 0.68 0.68 0.67 0.63 3.1 1.7
OCIR_04 336 0.63 0.64 0.61 0.58 2.4 1.6
OCIR_05 336 0.68 0.68 0.66 0.63 2.6 1.7
OCIR_06 336 0.64 0.64 0.62 0.59 3.0 1.7
OCIR_07 336 0.60 0.60 0.58 0.55 3.1 1.8
OCIR_08 336 0.75 0.74 0.74 0.71 2.7 1.7
OCIR_09 336 0.65 0.65 0.63 0.60 3.6 1.8
OCIR_10 336 0.72 0.73 0.72 0.69 2.1 1.4
OCIR_11 336 0.69 0.69 0.67 0.64 2.8 1.8
OCIR_12 336 0.64 0.63 0.62 0.58 3.3 1.9
OCIR_13 336 0.61 0.61 0.58 0.55 3.7 1.9
OCIR_14 336 0.71 0.71 0.70 0.66 2.8 1.9
OCIR_15 336 0.68 0.68 0.67 0.63 3.2 1.8
OCIR_16 336 0.59 0.59 0.55 0.53 2.6 1.7
OCIR_17 336 0.74 0.75 0.73 0.70 2.5 1.7
OCIR_18 336 0.69 0.69 0.67 0.64 2.5 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
OCIR_01 0.27 0.32 0.11 0.08 0.14 0.06 0.01 0
OCIR_02 0.21 0.24 0.11 0.07 0.24 0.10 0.04 0
OCIR_03 0.18 0.30 0.14 0.09 0.20 0.07 0.02 0
OCIR_04 0.39 0.29 0.08 0.06 0.12 0.05 0.01 0
OCIR_05 0.33 0.31 0.09 0.05 0.15 0.05 0.02 0
OCIR_06 0.21 0.32 0.12 0.09 0.15 0.10 0.01 0
OCIR_07 0.23 0.25 0.13 0.10 0.21 0.07 0.02 0
OCIR_08 0.29 0.35 0.09 0.06 0.11 0.08 0.02 0
OCIR_09 0.15 0.21 0.13 0.12 0.22 0.12 0.04 0
OCIR_10 0.45 0.32 0.06 0.06 0.07 0.03 0.01 0
OCIR_11 0.33 0.27 0.07 0.06 0.17 0.08 0.02 0
OCIR_12 0.20 0.27 0.10 0.08 0.20 0.12 0.03 0
OCIR_13 0.17 0.19 0.08 0.07 0.30 0.15 0.04 0
OCIR_14 0.29 0.32 0.07 0.07 0.11 0.10 0.03 0
OCIR_15 0.18 0.26 0.13 0.12 0.18 0.10 0.03 0
OCIR_16 0.36 0.27 0.07 0.09 0.13 0.05 0.02 0
OCIR_17 0.35 0.28 0.13 0.07 0.09 0.06 0.02 0
OCIR_18 0.32 0.35 0.09 0.04 0.11 0.08 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
OCIR_01 Obsessive–Compulsive Inventory: I have saved up so many things that they get in the way. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.7 1.7 7 ▆▇▃▂▁▃▂▁
OCIR_02 Obsessive–Compulsive Inventory: I check things more often than necessary. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.4 1.9 7 ▇▇▃▂▁▇▃▁
OCIR_03 Obsessive–Compulsive Inventory: I get upset if objects are not arranged properly. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.7 7 ▅▇▃▂▁▅▂▁
OCIR_04 Obsessive–Compulsive Inventory: I feel compelled to count while I am doing things. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.4 1.6 7 ▇▆▂▁▁▂▁▁
OCIR_05 Obsessive–Compulsive Inventory: I find it difficult to touch an object when I know it has been touched by strangers or certain people. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.6 1.7 7 ▇▇▂▁▁▃▁▁
OCIR_06 Obsessive–Compulsive Inventory: I find it difficult to control my own thoughts. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 3.0 1.7 7 ▅▇▃▂▁▃▂▁
OCIR_07 Obsessive–Compulsive Inventory: I collect things I don’t need. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.8 7 ▇▇▅▃▁▆▂▁
OCIR_08 Obsessive–Compulsive Inventory: I repeatedly check doors, windows, drawers, etc. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.7 1.7 7 ▆▇▂▂▁▂▂▁
OCIR_09 Obsessive–Compulsive Inventory: I get upset if others change the way I have arranged things. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.6 1.8 7 ▆▇▅▅▁▇▅▂
OCIR_10 Obsessive–Compulsive Inventory: I feel I have to repeat certain numbers. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.1 1.4 7 ▇▆▁▁▁▁▁▁
OCIR_11 Obsessive–Compulsive Inventory: I sometimes have to wash or clean myself simply because I feel contaminated. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.8 1.8 7 ▇▆▂▂▁▅▂▁
OCIR_12 Obsessive–Compulsive Inventory: I am upset by unpleasant thoughts that come into my mind against my will. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.9 7 ▆▇▃▂▁▆▃▁
OCIR_13 Obsessive–Compulsive Inventory: I avoid throwing things away because I am afraid I might need them later. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.7 1.9 7 ▅▅▂▂▁▇▃▁
OCIR_14 Obsessive–Compulsive Inventory: I repeatedly check gas and water taps and light switches after turning them off. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.8 1.9 7 ▇▇▂▂▁▃▂▁
OCIR_15 Obsessive–Compulsive Inventory: I need things to be arranged in a particular order. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.2 1.8 7 ▆▇▃▃▁▆▃▁
OCIR_16 Obsessive–Compulsive Inventory: I feel that there are good and bad numbers. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.6 1.7 7 ▇▆▂▂▁▃▁▁
OCIR_17 Obsessive–Compulsive Inventory: I wash my hands more often and longer than necessary. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.5 1.7 7 ▇▆▃▂▁▂▂▁
OCIR_18 Obsessive–Compulsive Inventory: I frequently get nasty thoughts and have difficulty in getting rid of them. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.5 1.7 7 ▇▇▂▁▁▂▂▁

Scale: burnout

Overview

Reliability: Cronbach’s α [95% CI] = 0.9 [0.89;0.92].

Missing: 90.

Likert plot of scale burnout items

Likert plot of scale burnout items

Distribution of scale burnout

Distribution of scale burnout

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.89 0.9 0.92
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.9 0.9 0.91 0.54 9.2 0.01 4.5 1.2 0.54
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
OLBI_07 0.89 0.89 0.90 0.53 8.0 0.01 0.02 0.54
OLBI_08_R 0.88 0.88 0.89 0.52 7.5 0.01 0.02 0.52
OLBI_09_R 0.89 0.90 0.91 0.55 8.5 0.01 0.02 0.54
OLBI_10 0.89 0.89 0.90 0.53 7.9 0.01 0.02 0.53
OLBI_11_R 0.90 0.90 0.91 0.58 9.5 0.01 0.01 0.57
OLBI_12_R 0.88 0.88 0.89 0.52 7.6 0.01 0.02 0.53
OLBI_15 0.89 0.89 0.89 0.53 7.9 0.01 0.01 0.54
OLBI_16 0.89 0.89 0.89 0.53 7.9 0.01 0.01 0.53
Item statistics
n raw.r std.r r.cor r.drop mean sd
OLBI_07 246 0.78 0.78 0.75 0.70 5.0 1.6
OLBI_08_R 246 0.84 0.83 0.81 0.77 4.4 1.7
OLBI_09_R 246 0.73 0.72 0.66 0.64 3.6 1.7
OLBI_10 246 0.78 0.79 0.75 0.71 4.8 1.5
OLBI_11_R 246 0.64 0.63 0.56 0.52 5.3 1.6
OLBI_12_R 246 0.83 0.82 0.80 0.76 4.0 1.7
OLBI_15 246 0.78 0.79 0.77 0.71 4.6 1.6
OLBI_16 246 0.79 0.79 0.78 0.72 4.6 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
OLBI_07 0.04 0.06 0.08 0.09 0.24 0.37 0.12 0.27
OLBI_08_R 0.04 0.11 0.20 0.14 0.16 0.23 0.11 0.27
OLBI_09_R 0.07 0.24 0.25 0.16 0.09 0.13 0.07 0.27
OLBI_10 0.01 0.10 0.10 0.13 0.26 0.32 0.08 0.27
OLBI_11_R 0.01 0.06 0.12 0.10 0.13 0.33 0.25 0.27
OLBI_12_R 0.06 0.16 0.22 0.14 0.15 0.22 0.06 0.27
OLBI_15 0.04 0.08 0.13 0.17 0.22 0.28 0.07 0.27
OLBI_16 0.03 0.10 0.12 0.13 0.27 0.30 0.05 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
OLBI_07 Oldenburg Burnout Inventory: I find my work to be a positive challenge. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 5.0 1.6 7 ▁▁▂▂▁▅▇▂
OLBI_08_R Oldenburg Burnout Inventory: During my work, I often feel emotionally drained. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
90 0.73 1 5 7 4.4 1.7 7 ▂▃▇▅▁▆▇▃
OLBI_09_R Oldenburg Burnout Inventory: Over time, one can become disconnected from this type of work. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
90 0.73 1 3 7 3.6 1.7 7 ▂▇▇▅▁▃▅▂
OLBI_10 Oldenburg Burnout Inventory: After working, I have enough energy for my leisure activities. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 4.8 1.5 7 ▁▂▂▃▁▇▇▂
OLBI_11_R Oldenburg Burnout Inventory: Sometimes I feel sickened by my work tasks. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
90 0.73 1 6 7 5.3 1.6 7 ▁▂▃▂▁▃▇▆
OLBI_12_R Oldenburg Burnout Inventory: After my work, I usually feel worn out and weary. haven_labelled 7. strongly disagree,
6. disagree,
5. slightly disagree,
4. neither agree nor disagree,
3. slightly agree,
2. agree,
1. strongly agree
90 0.73 1 4 7 4.0 1.7 7 ▂▆▇▅▁▅▇▂
OLBI_15 Oldenburg Burnout Inventory: I feel more and more engaged in my work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 4.6 1.6 7 ▁▂▃▅▁▆▇▂
OLBI_16 Oldenburg Burnout Inventory: When I work, I usually feel energized. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5 7 4.6 1.6 7 ▁▃▃▃▁▇▇▁

Scale: alexithymia

Overview

Reliability: Cronbach’s α [95% CI] = 0.91 [0.89;0.92].

Missing: 0.

Likert plot of scale alexithymia items

Likert plot of scale alexithymia items

Distribution of scale alexithymia

Distribution of scale alexithymia

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.89 0.91 0.92
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.91 0.91 0.91 0.49 9.7 0.01 3 1.2 0.53
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PAQ_03 0.90 0.90 0.91 0.51 9.2 0.01 0.02 0.56
PAQ_05 0.90 0.90 0.91 0.50 9.0 0.01 0.02 0.54
PAQ_07 0.90 0.90 0.90 0.49 8.6 0.01 0.02 0.52
PAQ_08 0.90 0.89 0.90 0.49 8.5 0.01 0.02 0.51
PAQ_10 0.89 0.89 0.90 0.48 8.4 0.01 0.02 0.52
PAQ_13 0.89 0.89 0.90 0.48 8.3 0.01 0.02 0.52
PAQ_15 0.92 0.92 0.92 0.55 10.9 0.01 0.01 0.56
PAQ_16 0.89 0.89 0.90 0.47 8.1 0.01 0.02 0.51
PAQ_17 0.90 0.89 0.90 0.49 8.5 0.01 0.02 0.52
PAQ_20 0.90 0.90 0.90 0.49 8.5 0.01 0.02 0.52
Item statistics
n raw.r std.r r.cor r.drop mean sd
PAQ_03 336 0.68 0.68 0.63 0.60 3.1 1.6
PAQ_05 336 0.70 0.70 0.67 0.62 2.7 1.5
PAQ_07 336 0.77 0.76 0.74 0.70 3.4 1.8
PAQ_08 336 0.77 0.77 0.75 0.71 2.9 1.6
PAQ_10 336 0.79 0.79 0.76 0.73 3.0 1.6
PAQ_13 336 0.82 0.81 0.80 0.76 3.3 1.8
PAQ_15 336 0.47 0.47 0.38 0.36 3.9 1.5
PAQ_16 336 0.84 0.84 0.83 0.79 3.0 1.7
PAQ_17 336 0.77 0.78 0.76 0.71 2.4 1.4
PAQ_20 336 0.77 0.77 0.74 0.71 2.8 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PAQ_03 0.15 0.30 0.20 0.11 0.17 0.06 0.01 0
PAQ_05 0.19 0.41 0.13 0.08 0.11 0.06 0.01 0
PAQ_07 0.15 0.26 0.20 0.07 0.18 0.11 0.04 0
PAQ_08 0.15 0.39 0.17 0.10 0.10 0.08 0.01 0
PAQ_10 0.16 0.34 0.19 0.10 0.10 0.09 0.01 0
PAQ_13 0.14 0.30 0.15 0.07 0.19 0.12 0.03 0
PAQ_15 0.04 0.20 0.14 0.25 0.21 0.13 0.03 0
PAQ_16 0.15 0.36 0.15 0.08 0.14 0.10 0.01 0
PAQ_17 0.27 0.40 0.13 0.08 0.06 0.05 0.01 0
PAQ_20 0.19 0.39 0.14 0.08 0.12 0.07 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PAQ_03 Perth Alexithymia Questionnaire: I tend to ignore how I feel. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.6 7 ▃▇▅▃▁▅▂▁
PAQ_05 Perth Alexithymia Questionnaire: When I’m feeling good, I can’t tell whether I’m happy, excited, or amused. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.7 1.5 7 ▃▇▂▂▁▂▁▁
PAQ_07 Perth Alexithymia Questionnaire: When I’m feeling bad, I can’t talk about those feelings in much depth or detail. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.4 1.8 7 ▅▇▆▂▁▆▃▁
PAQ_08 Perth Alexithymia Questionnaire: When I’m feeling bad, I can’t make sense of those feelings. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.9 1.6 7 ▃▇▃▂▁▂▂▁
PAQ_10 Perth Alexithymia Questionnaire: When I’m feeling good, I can’t talk about those feelings in much depth or detail. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 3.0 1.6 7 ▃▇▅▂▁▂▂▁
PAQ_13 Perth Alexithymia Questionnaire: When something bad happens, it’s hard for me to put into words how I’m feeling. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.8 7 ▃▇▃▂▁▅▃▁
PAQ_15 Perth Alexithymia Questionnaire: I prefer to focus on things I can actually see or touch, rather than my emotions. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.9 1.5 7 ▁▆▅▇▁▆▅▁
PAQ_16 Perth Alexithymia Questionnaire: When something good happens, it’s hard for me to put into words how I’m feeling. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 3.0 1.7 7 ▃▇▃▂▁▃▂▁
PAQ_17 Perth Alexithymia Questionnaire: When I’m feeling good, I get confused about what emotion it is. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.4 1.4 7 ▆▇▂▂▁▁▁▁
PAQ_20 Perth Alexithymia Questionnaire: When I’m feeling bad, I’m puzzled by those feelings. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 2 7 2.8 1.6 7 ▃▇▃▂▁▂▂▁

Scale: perseverative_thinking

Overview

Reliability: Cronbach’s α [95% CI] = 0.97 [0.96;0.97].

Missing: 0.

Likert plot of scale perseverative_thinking items

Likert plot of scale perseverative_thinking items

Distribution of scale perseverative_thinking

Distribution of scale perseverative_thinking

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.96 0.97 0.97
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.97 0.97 0.97 0.65 28 0 3.6 1.4 0.67
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
PTQ_01 0.96 0.96 0.97 0.64 25 0 0.01 0.65
PTQ_02 0.96 0.96 0.97 0.65 26 0 0.01 0.66
PTQ_03 0.96 0.96 0.97 0.64 25 0 0.01 0.65
PTQ_04 0.96 0.96 0.97 0.66 27 0 0.01 0.68
PTQ_05 0.96 0.96 0.97 0.66 27 0 0.01 0.67
PTQ_06 0.96 0.96 0.97 0.65 26 0 0.01 0.66
PTQ_07 0.96 0.96 0.97 0.66 27 0 0.01 0.67
PTQ_08 0.96 0.96 0.97 0.65 26 0 0.01 0.65
PTQ_09 0.96 0.96 0.97 0.65 26 0 0.01 0.67
PTQ_10 0.96 0.96 0.97 0.65 26 0 0.01 0.65
PTQ_11 0.96 0.96 0.97 0.64 25 0 0.01 0.65
PTQ_12 0.97 0.97 0.97 0.67 29 0 0.01 0.68
PTQ_13 0.96 0.96 0.97 0.65 26 0 0.01 0.65
PTQ_14 0.97 0.97 0.97 0.66 28 0 0.01 0.68
PTQ_15 0.96 0.96 0.97 0.65 26 0 0.01 0.67
Item statistics
n raw.r std.r r.cor r.drop mean sd
PTQ_01 336 0.88 0.88 0.88 0.86 3.7 1.8
PTQ_02 336 0.83 0.83 0.82 0.80 3.9 1.7
PTQ_03 336 0.89 0.89 0.88 0.87 3.3 1.8
PTQ_04 336 0.78 0.78 0.77 0.75 3.4 1.7
PTQ_05 336 0.80 0.80 0.79 0.77 3.0 1.6
PTQ_06 336 0.84 0.84 0.83 0.81 4.0 1.8
PTQ_07 336 0.78 0.78 0.76 0.74 4.1 1.7
PTQ_08 336 0.87 0.87 0.86 0.84 3.5 1.7
PTQ_09 336 0.83 0.83 0.82 0.80 3.5 1.7
PTQ_10 336 0.88 0.88 0.87 0.86 3.4 1.7
PTQ_11 336 0.89 0.89 0.88 0.87 3.5 1.8
PTQ_12 336 0.69 0.69 0.67 0.64 4.6 1.6
PTQ_13 336 0.84 0.84 0.82 0.81 3.3 1.7
PTQ_14 336 0.73 0.74 0.71 0.70 3.1 1.6
PTQ_15 336 0.81 0.81 0.80 0.78 3.1 1.7
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
PTQ_01 0.12 0.19 0.14 0.12 0.26 0.13 0.04 0
PTQ_02 0.11 0.17 0.15 0.10 0.28 0.17 0.03 0
PTQ_03 0.16 0.27 0.16 0.09 0.18 0.10 0.03 0
PTQ_04 0.13 0.26 0.19 0.10 0.21 0.10 0.03 0
PTQ_05 0.14 0.35 0.19 0.09 0.14 0.07 0.02 0
PTQ_06 0.11 0.15 0.11 0.13 0.29 0.15 0.05 0
PTQ_07 0.09 0.15 0.10 0.14 0.30 0.18 0.04 0
PTQ_08 0.12 0.26 0.15 0.12 0.20 0.11 0.04 0
PTQ_09 0.12 0.24 0.19 0.11 0.21 0.11 0.02 0
PTQ_10 0.14 0.26 0.16 0.10 0.21 0.12 0.02 0
PTQ_11 0.14 0.24 0.15 0.10 0.22 0.12 0.04 0
PTQ_12 0.06 0.09 0.07 0.13 0.31 0.29 0.05 0
PTQ_13 0.15 0.27 0.16 0.13 0.16 0.10 0.02 0
PTQ_14 0.15 0.26 0.22 0.17 0.11 0.06 0.03 0
PTQ_15 0.15 0.32 0.17 0.10 0.13 0.12 0.01 0

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
PTQ_01 Perseverative Thinking Questionnaire: The same thoughts keep going through my mind again and again. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.7 1.8 7 ▃▆▅▃▁▇▃▁
PTQ_02 Perseverative Thinking Questionnaire: Thoughts intrude into my mind. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 3.9 1.7 7 ▃▅▅▃▁▇▅▁
PTQ_03 Perseverative Thinking Questionnaire: I can’t stop dwelling on negative experiences or problems. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.8 7 ▅▇▅▃▁▆▃▁
PTQ_04 Perseverative Thinking Questionnaire: I think about many problems without solving any of them. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.4 1.7 7 ▃▇▆▃▁▆▃▁
PTQ_05 Perseverative Thinking Questionnaire: I can’t do anything else while thinking about my problems. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.0 1.6 7 ▃▇▅▂▁▃▂▁
PTQ_06 Perseverative Thinking Questionnaire: My thoughts repeat themselves. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 4 7 4.0 1.8 7 ▃▅▃▃▁▇▅▂
PTQ_07 Perseverative Thinking Questionnaire: Thoughts come to my mind without me wanting them to. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.1 1.7 7 ▂▃▃▃▁▇▅▁
PTQ_08 Perseverative Thinking Questionnaire: I get stuck on certain issues and can’t move on. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.5 1.7 7 ▃▇▅▃▁▆▃▁
PTQ_09 Perseverative Thinking Questionnaire: I keep asking myself questions without finding an answer. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.5 1.7 7 ▅▇▆▃▁▇▃▁
PTQ_10 Perseverative Thinking Questionnaire: My thoughts prevent me from focusing on other things. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.4 1.7 7 ▅▇▅▃▁▆▃▁
PTQ_11 Perseverative Thinking Questionnaire: I keep thinking about the same issue all the time. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.5 1.8 7 ▅▇▅▃▁▇▃▁
PTQ_12 Perseverative Thinking Questionnaire: Thoughts just pop into my mind. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 5 7 4.6 1.6 7 ▂▂▂▃▁▇▇▁
PTQ_13 Perseverative Thinking Questionnaire: I feel driven to continue dwelling on the same issue. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.3 1.7 7 ▅▇▅▃▁▅▃▁
PTQ_14 Perseverative Thinking Questionnaire: My thoughts are not much help to me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.6 7 ▅▇▇▅▁▃▂▁
PTQ_15 Perseverative Thinking Questionnaire: My thoughts take up all my attention. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
0 1 1 3 7 3.1 1.7 7 ▃▇▅▂▁▃▃▁

Scale: engagement

Overview

Reliability: Cronbach’s α [95% CI] = 0.95 [0.94;0.95].

Missing: 90.

Likert plot of scale engagement items

Likert plot of scale engagement items

Distribution of scale engagement

Distribution of scale engagement

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.94 0.95 0.95
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.95 0.95 0.95 0.66 18 0 4.7 1.4 0.68
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
UWES9_01 0.94 0.94 0.94 0.65 15 0.01 0.02 0.66
UWES9_02 0.94 0.94 0.94 0.65 15 0.01 0.01 0.64
UWES9_03 0.93 0.93 0.93 0.64 14 0.01 0.01 0.64
UWES9_04 0.93 0.93 0.94 0.64 14 0.01 0.01 0.64
UWES9_05 0.94 0.94 0.94 0.66 16 0.00 0.02 0.68
UWES9_06 0.94 0.94 0.95 0.68 17 0.00 0.02 0.71
UWES9_07 0.94 0.94 0.94 0.67 16 0.00 0.01 0.68
UWES9_08 0.94 0.94 0.94 0.66 15 0.00 0.02 0.66
UWES9_09 0.95 0.95 0.95 0.71 20 0.00 0.01 0.71
Item statistics
n raw.r std.r r.cor r.drop mean sd
UWES9_01 246 0.87 0.86 0.85 0.82 4.2 1.7
UWES9_02 246 0.90 0.89 0.89 0.86 4.7 1.6
UWES9_03 246 0.92 0.92 0.93 0.90 4.8 1.6
UWES9_04 246 0.91 0.91 0.91 0.88 4.8 1.7
UWES9_05 246 0.83 0.82 0.80 0.78 4.2 1.8
UWES9_06 246 0.78 0.78 0.73 0.72 5.0 1.5
UWES9_07 246 0.81 0.82 0.79 0.77 5.5 1.4
UWES9_08 246 0.86 0.86 0.84 0.82 4.9 1.6
UWES9_09 246 0.66 0.66 0.59 0.57 4.2 1.6
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
UWES9_01 0.05 0.15 0.17 0.16 0.18 0.22 0.07 0.27
UWES9_02 0.06 0.09 0.10 0.14 0.22 0.33 0.08 0.27
UWES9_03 0.05 0.08 0.08 0.12 0.24 0.33 0.11 0.27
UWES9_04 0.04 0.11 0.09 0.13 0.20 0.31 0.12 0.27
UWES9_05 0.10 0.14 0.13 0.12 0.16 0.30 0.05 0.27
UWES9_06 0.03 0.07 0.08 0.11 0.24 0.37 0.10 0.27
UWES9_07 0.02 0.03 0.04 0.11 0.17 0.41 0.21 0.27
UWES9_08 0.04 0.08 0.07 0.11 0.26 0.36 0.09 0.27
UWES9_09 0.04 0.17 0.17 0.12 0.26 0.19 0.05 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
UWES9_01 Utrecht Work Engagement Scale: At my work, I feel bursting with energy. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 4.0 7 4.2 1.7 7 ▂▅▆▆▁▇▇▂
UWES9_02 Utrecht Work Engagement Scale: At my job, I feel strong and vigorous. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5.0 7 4.7 1.6 7 ▂▂▂▃▁▆▇▂
UWES9_03 Utrecht Work Engagement Scale: I am enthusiastic about my job. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5.0 7 4.8 1.6 7 ▁▂▂▃▁▆▇▃
UWES9_04 Utrecht Work Engagement Scale: My job inspires me. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5.0 7 4.8 1.7 7 ▁▃▂▃▁▅▇▃
UWES9_05 Utrecht Work Engagement Scale: When I get up in the morning, I feel like going to work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5.0 7 4.2 1.8 7 ▂▃▃▃▁▅▇▂
UWES9_06 Utrecht Work Engagement Scale: I feel happy when I am working intensely. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5.0 7 5.0 1.5 7 ▁▂▂▂▁▅▇▂
UWES9_07 Utrecht Work Engagement Scale: I am proud of the work that I do. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 6.0 7 5.5 1.4 7 ▁▁▁▂▁▃▇▅
UWES9_08 Utrecht Work Engagement Scale: I am immersed in my work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 5.0 7 4.9 1.6 7 ▁▂▂▂▁▆▇▂
UWES9_09 Utrecht Work Engagement Scale: I get carried away when I am working. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
90 0.73 1 4.5 7 4.2 1.6 7 ▁▅▆▃▁▇▆▂

Scale: work_gratitude

Overview

Reliability: Cronbach’s α [95% CI] = 0.93 [0.92;0.94].

Missing: 91.

Likert plot of scale work_gratitude items

Likert plot of scale work_gratitude items

Distribution of scale work_gratitude

Distribution of scale work_gratitude

Reliability details

Reliability
95% Confidence Interval
lower estimate upper
0.92 0.93 0.94
raw_alpha std.alpha G6(smc) average_r S/N ase mean sd median_r
0.93 0.93 0.94 0.58 14 0.01 5 1.2 0.57
Reliability if an item is dropped:
raw_alpha std.alpha G6(smc) average_r S/N alpha se var.r med.r
WGS_01 0.92 0.92 0.93 0.56 11 0.01 0.01 0.56
WGS_02 0.92 0.92 0.93 0.56 12 0.01 0.01 0.56
WGS_03 0.92 0.93 0.93 0.58 12 0.01 0.01 0.59
WGS_04 0.93 0.93 0.93 0.59 13 0.01 0.01 0.59
WGS_05 0.92 0.92 0.93 0.58 12 0.01 0.01 0.59
WGS_06 0.92 0.92 0.93 0.57 12 0.01 0.01 0.57
WGS_07 0.92 0.92 0.93 0.57 12 0.01 0.01 0.56
WGS_08 0.93 0.93 0.94 0.60 13 0.01 0.01 0.59
WGS_09 0.92 0.92 0.93 0.58 12 0.01 0.01 0.58
WGS_10 0.93 0.93 0.93 0.58 12 0.01 0.01 0.57
Item statistics
n raw.r std.r r.cor r.drop mean sd
WGS_01 245 0.86 0.86 0.86 0.82 5.0 1.5
WGS_02 245 0.85 0.84 0.83 0.80 4.7 1.7
WGS_03 245 0.78 0.78 0.75 0.72 5.2 1.5
WGS_04 245 0.72 0.72 0.68 0.65 5.0 1.6
WGS_05 245 0.78 0.78 0.76 0.72 5.4 1.4
WGS_06 245 0.82 0.82 0.80 0.77 4.9 1.5
WGS_07 245 0.82 0.83 0.81 0.78 5.2 1.4
WGS_08 245 0.69 0.69 0.64 0.61 4.8 1.4
WGS_09 245 0.78 0.78 0.75 0.72 4.9 1.5
WGS_10 245 0.76 0.77 0.74 0.71 5.3 1.2
Non missing response frequency for each item
1 2 3 4 5 6 7 miss
WGS_01 0.03 0.06 0.08 0.14 0.22 0.32 0.15 0.27
WGS_02 0.04 0.11 0.10 0.13 0.25 0.22 0.13 0.27
WGS_03 0.02 0.06 0.10 0.09 0.20 0.39 0.15 0.27
WGS_04 0.02 0.08 0.10 0.12 0.21 0.31 0.16 0.27
WGS_05 0.02 0.03 0.06 0.13 0.18 0.41 0.18 0.27
WGS_06 0.01 0.07 0.11 0.16 0.22 0.31 0.11 0.27
WGS_07 0.02 0.05 0.04 0.13 0.24 0.36 0.15 0.27
WGS_08 0.02 0.07 0.08 0.22 0.25 0.25 0.10 0.27
WGS_09 0.03 0.06 0.09 0.16 0.25 0.27 0.14 0.27
WGS_10 0.00 0.06 0.03 0.13 0.29 0.38 0.11 0.27

Summary statistics

name label data_type value_labels n_missing complete_rate min median max mean sd n_value_labels hist
WGS_01 Work Gratitude Scale: Right now, I have so much at work to be thankful for. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 5.0 1.5 7 ▁▂▂▃▁▆▇▃
WGS_02 Work Gratitude Scale: At this present time, if I had to list everything that I felt grateful for at work, it would be a very long list. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 4.7 1.7 7 ▁▃▃▅▁▇▇▅
WGS_03 Work Gratitude Scale: At the present time, life has been good to me at work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 6 7 5.2 1.5 7 ▁▁▂▂▁▅▇▃
WGS_04 Work Gratitude Scale: Currently, I couldn’t have gotten where I am today at work without the help of many people. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 5.0 1.6 7 ▁▂▂▃▁▆▇▅
WGS_05 Work Gratitude Scale: Although I think it’s important to feel good about my current work accomplishments, I think that it’s also important to remember how others have contributed to my accomplishments. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 6 7 5.4 1.4 7 ▁▁▁▂▁▃▇▃
WGS_06 Work Gratitude Scale: Although I’m basically in control of my work at the present time, I can’t help but think about all those who have supported me and helped me along the way. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 4.9 1.5 7 ▁▂▃▅▁▆▇▃
WGS_07 Work Gratitude Scale: Right now, I feel deeply appreciative for the things others have done for me at work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 6 7 5.2 1.4 7 ▁▁▁▃▁▆▇▃
WGS_08 Work Gratitude Scale: Currently, I think that it’s important to “Stop and smell the roses” as it pertains to my work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 4.8 1.4 7 ▁▂▂▇▁▇▇▃
WGS_09 Work Gratitude Scale: Currently, I believe that it’s important to pause often to “count my blessings” at work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 1 5 7 4.9 1.5 7 ▁▂▂▅▁▇▇▅
WGS_10 Work Gratitude Scale: Right now, I think it’s important to enjoy the simple things that pertain to my work. haven_labelled 1. strongly disagree,
2. disagree,
3. slightly disagree,
4. neither agree nor disagree,
5. slightly agree,
6. agree,
7. strongly agree
91 0.73 2 5 7 5.3 1.2 7 ▁▁▁▂▆▁▇▂

non_hispanic_white

Distribution

Distribution of values for non_hispanic_white

Distribution of values for non_hispanic_white

0 missing values.

Summary statistics

name data_type n_missing complete_rate min median max mean sd hist label
non_hispanic_white numeric 0 1 0 1 1 0.63 0.48 ▅▁▁▁▇ NA

Missingness report

## # A tibble: 6 × 66
##   description             TIME006 TIME007 TIME008 TIME009 `Submission id` Status
##   <chr>                     <dbl>   <dbl>   <dbl>   <dbl>           <dbl>  <dbl>
## 1 Missing values per var…       1       1       1       1               2      2
## 2 Missing values in 1 va…       1       1       1       1               1      1
## 3 Missing values in 0 va…       1       1       1       1               1      1
## 4 Missing values in 38 v…       1       1       1       1               1      1
## 5 Missing values in 39 v…       1       1       1       1               1      1
## 6 5 other, less frequent…       4       4       4       4               3      3
## # ℹ 59 more variables: `Custom study tncs accepted at` <dbl>,
## #   `Started at` <dbl>, `Archived at` <dbl>, `Time taken` <dbl>,
## #   `Total approvals` <dbl>, `Fluent languages` <dbl>, Age_prolific <dbl>,
## #   Sex <dbl>, `Ethnicity simplified` <dbl>, `Country of birth` <dbl>,
## #   `Country of residence` <dbl>, Nationality <dbl>, Language <dbl>,
## #   `Student status` <dbl>, `Employment status` <dbl>, `Completed at` <dbl>,
## #   `Reviewed at` <dbl>, TIME010 <dbl>, OLBI_07 <dbl>, OLBI_10 <dbl>, …

Codebook table

JSON-LD metadata

The following JSON-LD can be found by search engines, if you share this codebook publicly on the web.

{
  "name": "rr_human_data_included",
  "datePublished": "2025-03-29",
  "description": "The dataset has N=336 rows and 388 columns.\n116 rows have no missing values on any column.\n\n\n## Table of variables\nThis table contains variable names, labels, and number of missing values.\nSee the complete codebook for more.\n\n[truncated]\n\n### Note\nThis dataset was automatically described using the [codebook R package](https://rubenarslan.github.io/codebook/) (version 0.9.5).",
  "keywords": ["sex", "gender", "age", "race", "hispanic", "education", "occupation", "SD05", "SD12", "SD06", "SD07", "SD09", "SD11_01", "CASE", "even_odd", "psychant", "psychsyn", "mahal_dist", "longstring", "time_per_item", "not_serious", "included", "Submission id", "Status", "Custom study tncs accepted at", "Started at", "Completed at", "Reviewed at", "Archived at", "Time taken", "Total approvals", "Fluent languages", "Age_prolific", "Sex", "Ethnicity simplified", "Country of birth", "Country of residence", "Nationality", "Language", "Student status", "Employment status", "STARTED", "AAID_01", "AAID_05", "AAID_07", "AAID_09", "AAID_12", "AAID_14", "PANAS_09", "PANAS_14", "PANAS_10", "PANAS_05", "PANAS_08", "PANAS_06", "PANAS_04", "PANAS_18", "OLBI_07", "OLBI_10", "OLBI_15", "OLBI_16", "UWES9_01", "UWES9_02", "UWES9_03", "UWES9_04", "UWES9_05", "UWES9_06", "UWES9_07", "UWES9_08", "UWES9_09", "PAQ_08", "PAQ_20", "PAQ_05", "PAQ_17", "PAQ_13", "PAQ_07", "PAQ_10", "PAQ_16", "PAQ_03", "PAQ_15", "PSS_01", "PSS_02", "PSS_03", "PSS_08", "PSS_11", "PSS_12", "PSS_14", "NEPS_01", "NEPS_05", "NEPS_07", "NEPS_09", "NEPS_13", "ULS8_01", "ULS8_02", "ULS8_04", "ULS8_05", "ULS8_07", "ULS8_08", "FCV19S_01", "FCV19S_02", "FCV19S_03", "FCV19S_04", "FCV19S_05", "FCV19S_06", "FCV19S_07", "DAQ_05", "DAQ_07", "DAQ_09", "DAQ_11", "DAQ_15", "DAQ_19", "DAQ_21", "DAQ_23", "DAQ_25", "DAQ_02", "DAQ_06", "DAQ_08", "DAQ_10", "DAQ_12", "DAQ_14", "DAQ_16", "DAQ_24", "WGS_01", "WGS_02", "WGS_03", "WGS_04", "WGS_05", "WGS_06", "WGS_07", "WGS_08", "WGS_09", "WGS_10", "CESD_01", "CESD_02", "CESD_03", "CESD_05", "CESD_06", "CESD_07", "CESD_09", "CESD_10", "CESD_11", "CESD_13", "CESD_14", "CESD_15", "CESD_17", "CESD_18", "CESD_19", "CESD_20", "HEXACO_01", "HEXACO_02", "HEXACO_06", "HEXACO_09", "HEXACO_11", "HEXACO_12", "HEXACO_13", "HEXACO_15", "HEXACO_17", "HEXACO_18", "HEXACO_21", "HEXACO_22", "HEXACO_27", "HEXACO_29", "OCIR_01", "OCIR_02", "OCIR_03", "OCIR_04", "OCIR_05", "OCIR_06", "OCIR_07", "OCIR_08", "OCIR_09", "OCIR_10", "OCIR_11", "OCIR_12", "OCIR_13", "OCIR_14", "OCIR_15", "OCIR_16", "OCIR_17", "OCIR_18", "PTQ_01", "PTQ_02", "PTQ_03", "PTQ_04", "PTQ_05", "PTQ_06", "PTQ_07", "PTQ_08", "PTQ_09", "PTQ_10", "PTQ_11", "PTQ_12", "PTQ_13", "PTQ_14", "PTQ_15", "RAAS_01", "RAAS_05", "RAAS_06", "RAAS_12", "RAAS_14", "KSA3_01", "KSA3_02", "KSA3_03", "KSA3_04", "KSA3_05", "KSA3_06", "KSA3_07", "KSA3_08", "KSA3_09", "FRI_01", "SAS_01", "SAS_02", "SAS_03", "SAS_04", "SAS_05", "SAS_07", "SAS_08", "SAS_09", "MFQ_01", "MFQ_02", "MFQ_03", "MFQ_04", "MFQ_05", "MFQ_06", "MFQ_07", "MFQ_08", "MFQ_09", "MFQ_10", "MFQ_11", "CQ_03", "CQ_04", "CQ_05", "CQ_09", "CQ_14", "CQ_15", "CQ_16", "TIME002", "TIME003", "TIME004", "TIME005", "TIME006", "TIME007", "TIME008", "TIME009", "TIME010", "TIME_SUM", "LASTDATA", "FINISHED", "Q_VIEWER", "LASTPAGE", "MAXPAGE", "MISSING", "MISSREL", "TIME_RSI", "CESD_04_R", "CESD_08_R", "CESD_12_R", "CESD_16_R", "HEXACO_03_R", "HEXACO_04_R", "HEXACO_05_R", "HEXACO_07_R", "HEXACO_08_R", "HEXACO_10_R", "HEXACO_14_R", "HEXACO_16_R", "HEXACO_19_R", "HEXACO_20_R", "HEXACO_26_R", "HEXACO_25_R", "HEXACO_23_R", "HEXACO_24_R", "HEXACO_28_R", "HEXACO_30_R", "NEPS_04_R", "NEPS_06_R", "NEPS_08_R", "NEPS_10_R", "NEPS_12_R", "OLBI_08_R", "OLBI_09_R", "OLBI_11_R", "OLBI_12_R", "PSS_04_R", "PSS_05_R", "PSS_06_R", "PSS_07_R", "PSS_09_R", "PSS_10_R", "PSS_13_R", "RAAS_02_R", "RAAS_07_R", "RAAS_08_R", "RAAS_13_R", "RAAS_16_R", "RAAS_17_R", "SAS_06_R", "ULS8_03_R", "ULS8_06_R", "CQ_01_R", "CQ_02_R", "CQ_06_R", "CQ_07_R", "CQ_08_R", "CQ_10_R", "CQ_11_R", "CQ_12_R", "CQ_13_R", "negative_attitude_toward_ai_in_defense", "positive_attitude_toward_ai_in_defense", "depression_somatic", "depression_depressive_affect", "depression_well-being", "depression_interpersonal", "behavioral_escape", "behavioral_prevention", "cognitive_escape", "cognitive_prevention", "fear_of_covid-19", "agreeableness_forgiveness", "honesty-humility_sincerity", "agreeableness_gentleness", "honesty-humility_fairness_(hexaco)", "agreeableness_flexibility", "honesty-humility_greed-avoidance", "agreeableness_patience", "honesty-humility_modesty", "conscientiousness_diligence", "conscientiousness_organization", "conscientiousness_perfectionism", "conscientiousness_prudence", "authoritarianism_authoritarian_aggression", "authoritarianism_authoritarian_submissiveness", "authoritarianism_conventionalism", "harm", "fairness", "ingroup", "authority", "purity", "limits_to_growth", "antiexemptionalism", "eco-crisis", "human_domination", "balance_of_nature", "obsessiveness-compulsiveness_hoarding", "obsessiveness-compulsiveness_checking", "obsessiveness-compulsiveness_ordering", "obsessiveness-compulsiveness_neutralizing", "obsessiveness-compulsiveness_washing", "obsessiveness-compulsiveness_obsessing", "burnout_disengagement", "burnout_exhaustion", "negative_affect", "positive_affect", "alexithymia_general-externally_orientated_thinking", "alexithymia_positive-difficulty_identifying_feelings", "alexithymia_negative-difficulty_describing_feelings", "alexithymia_negative-difficulty_identifying_feelings", "alexithymia_positive-difficulty_describing_feelings", "perceived_stress", "perseverative_thinking_core_characteristics_of_repetitive_negative_thinking", "perseverative_thinking_unproductiveness_of_repetitive_negative_thinking", "perseverative_thinking_repetitive_negative_thinking_capturing_mental_capacity", "close", "depend", "survey_enjoyment", "survey_value", "survey_burden", "loneliness", "engagement_vigor", "engagement_dedication", "engagement_absorption", "work_gratitude_grateful_appraisals", "work_gratitude_gratitude_toward_others", "work_gratitude_intentional_attitude_of_gratitude", "distinctness", "morningness-eveningness", "depression", "agreeableness", "honesty-humility", "conscientiousness", "authoritarianism", "obsessiveness-compulsiveness", "burnout", "alexithymia", "perseverative_thinking", "engagement", "work_gratitude", "non_hispanic_white"],
  "@context": "https://schema.org/",
  "@type": "Dataset",
  "variableMeasured": [
    {
      "name": "sex",
      "description": "Sex",
      "value": "1. Female,\n2. Male,\n3. [NA] Not answered",
      "@type": "propertyValue"
    },
    {
      "name": "gender",
      "description": "Gender",
      "value": "1. Same as sex,\n2. Other, please specify,\n3. [NA] Not answered",
      "@type": "propertyValue"
    },
    {
      "name": "age",
      "description": "Age: [01]",
      "@type": "propertyValue"
    },
    {
      "name": "race",
      "description": "Race",
      "value": "1. White,\n2. Black/African American,\n3. American Indian or Alaska Native,\n4. Chinese,\n5. Japanese,\n6. Other Asian or Pacific Islander,\n7. Other race,\n8. Two major races (e.g., White and Japanese),\n9. Three or more major races,\n10. [NA] Not answered",
      "@type": "propertyValue"
    },
    {
      "name": "hispanic",
      "description": "Hispan",
      "value": "1. No, not of Hispanic, Latino, or Spanish origin,\n2. Yes, Mexican, Mexican Am., Chicano,\n3. Yes, Puerto Rican,\n4. Yes, Cuban,\n5. Yes, another Hispanic, Latino, or Spanish origin,\n6. [NA] Not answered",
      "@type": "propertyValue"
    },
    {
      "name": "education",
      "@type": "propertyValue"
    },
    {
      "name": "occupation",
      "@type": "propertyValue"
    },
    {
      "name": "SD05",
      "description": "BPL- state",
      "value": "1. N/A: not in the US,\n2. Alabama,\n3. Alaska,\n4. Arizona,\n5. Arkansas,\n6. California,\n7. Colorado,\n8. Connecticut,\n9. Delaware,\n10. Florida,\n11. Georgia,\n12. Hawaii,\n13. Idaho,\n14. Illinois,\n15. Indiana,\n16. Iowa,\n17. Kansas,\n18. Kentucky,\n19. Louisiana,\n20. Maine,\n21. Maryland,\n22. Massachusetts,\n23. Michigan,\n24. Minnesota,\n25. Mississippi,\n26. Missouri,\n27. Montana,\n28. Nebraska,\n29. Nevada,\n30. New Hampshire,\n31. New Jersey,\n32. New Mexico,\n33. New York,\n34. North Carolina,\n35. North Dakota,\n36. Ohio,\n37. Oklahoma,\n38. Oregon,\n39. Pennsylvania,\n40. Rhode Island,\n41. South Carolina,\n42. South Dakota,\n43. Tennessee,\n44. Texas,\n45. Utah,\n46. Vermont,\n47. Virginia,\n48. Washington,\n49. West Virginia,\n50. Wisconsin,\n51. Wyoming,\n52. [NA] Not answered",
      "@type": "propertyValue"
    },
    {
      "name": "SD12",
      "description": "BPL- country",
      "value": "1. United States,\n2. Afghanistan,\n3. Albania,\n4. Algeria,\n5. Andorra,\n6. Angola,\n7. Antigua and Barbuda,\n8. Argentina,\n9. Armenia,\n10. Australia,\n11. Austria,\n12. Azerbaijan,\n13. Bahamas,\n14. Bahrain,\n15. Bangladesh,\n16. Barbados,\n17. Belarus,\n18. Belgium,\n19. Belize,\n20. Benin,\n21. Bhutan,\n22. Bolivia,\n23. Bosnia and Herzegovina,\n24. Botswana,\n25. Brazil,\n26. Brunei,\n27. Bulgaria,\n28. Burkina Faso,\n29. Burundi,\n30. Cabo Verde,\n31. Cambodia,\n32. Cameroon,\n33. Canada,\n34. Central African Republic,\n35. Chad,\n36. Chile,\n37. China,\n38. Colombia,\n39. Comoros,\n40. Congo (Democratic Republic of the),\n41. Congo (Republic of the),\n42. Costa Rica,\n43. Côte d’Ivoire,\n44. Croatia,\n45. Cuba,\n46. Cyprus,\n47. Czech Republic,\n48. Denmark,\n49. Djibouti,\n50. Dominica,\n51. Dominican Republic,\n52. Ecuador,\n53. Egypt,\n54. El Salvador,\n55. Equatorial Guinea,\n56. Eritrea,\n57. Estonia,\n58. Eswatini,\n59. Ethiopia,\n60. Fiji,\n61. Finland,\n62. France,\n63. Gabon,\n64. Gambia,\n65. Georgia,\n66. Germany,\n67. Ghana,\n68. Greece,\n69. Grenada,\n70. Guatemala,\n71. Guinea,\n72. Guinea-Bissau,\n73. Guyana,\n74. Haiti,\n75. Honduras,\n76. Hungary,\n77. Iceland,\n78. India,\n79. Indonesia,\n80. Iran,\n81. Iraq,\n82. Ireland,\n83. Israel,\n84. Italy,\n85. Jamaica,\n86. Japan,\n87. Jordan,\n88. Kazakhstan,\n89. Kenya,\n90. Kiribati,\n91. Kosovo,\n92. Kuwait,\n93. Kyrgyzstan,\n94. Laos,\n95. Latvia,\n96. Lebanon,\n97. Lesotho,\n98. Liberia,\n99. Libya,\n100. Liechtenstein,\n101. Lithuania,\n102. Luxembourg,\n103. Madagascar,\n104. Malawi,\n105. Malaysia,\n106. Maldives,\n107. Mali,\n108. Malta,\n109. Marshall Islands,\n110. Mauritania,\n111. Mauritius,\n112. Mexico,\n113. Micronesia,\n114. Moldova,\n115. Monaco,\n116. Mongolia,\n117. Montenegro,\n118. Morocco,\n119. Mozambique,\n120. Myanmar,\n121. Namibia,\n122. Nauru,\n123. Nepal,\n124. Netherlands,\n125. New Zealand,\n126. Nicaragua,\n127. Niger,\n128. Nigeria,\n129. North Korea,\n130. North Macedonia,\n131. Norway,\n132. Oman,\n133. Pakistan,\n134. Palau,\n135. Palestine,\n136. Panama,\n137. Papua New Guinea,\n138. Paraguay,\n139. Peru,\n140. Philippines,\n141. Poland,\n142. Portugal,\n143. Qatar,\n144. Romania,\n145. Russia,\n146. Rwanda,\n147. Saint Kitts and Nevis,\n148. Saint Lucia,\n149. Saint Vincent and the Grenadines,\n150. Samoa,\n151. San Marino,\n152. Sao Tome and Principe,\n153. Saudi Arabia,\n154. Senegal,\n155. Serbia,\n156. Seychelles,\n157. Sierra Leone,\n158. Singapore,\n159. Slovakia,\n160. Slovenia,\n161. Solomon Islands,\n162. Somalia,\n163. South Africa,\n164. South Korea,\n165. South Sudan,\n166. Spain,\n167. Sri Lanka,\n168. Sudan,\n169. Suriname,\n170. Sweden,\n171. Switzerland,\n172. Syria,\n173. Taiwan,\n174. Tajikistan,\n175. Tanzania,\n176. Thailand,\n177. Timor-Leste,\n178. Togo,\n179. Tonga,\n180. Trinidad and Tobago,\n181. Tunisia,\n182. Turkey,\n183. Turkmenistan,\n184. Tuvalu,\n185. Uganda,\n186. Ukraine,\n187. United Arab Emirates,\n188. United Kingdom,\n189. Uruguay,\n190. Uzbekistan,\n191. Vanuatu,\n192. Vatican City,\n193. Venezuela,\n194. Vietnam,\n195. Yemen,\n196. Zambia,\n197. Zimbabwe,\n198. [NA] Not answered",
      "@type": "propertyValue"
    },
    {
      "name": "SD06",
      "description": "State",
      "value": "1. N/A: not in the US,\n2. Alabama,\n3. Alaska,\n4. Arizona,\n5. Arkansas,\n6. California,\n7. Colorado,\n8. Connecticut,\n9. Delaware,\n10. Florida,\n11. Georgia,\n12. Hawaii,\n13. Idaho,\n14. Illinois,\n15. Indiana,\n16. Iowa,\n17. Kansas,\n18. Kentucky,\n19. Louisiana,\n20. Maine,\n21. Maryland,\n22. Massachusetts,\n23. Michigan,\n24. Minnesota,\n25. Mississippi,\n26. Missouri,\n27. Montana,\n28. Nebraska,\n29. Nevada,\n30. New Hampshire,\n31. New Jersey,\n32. New Mexico,\n33. New York,\n34. North Carolina,\n35. North Dakota,\n36. Ohio,\n37. Oklahoma,\n38. Oregon,\n39. Pennsylvania,\n40. Rhode Island,\n41. South Carolina,\n42. South Dakota,\n43. Tennessee,\n44. Texas,\n45. Utah,\n46. Vermont,\n47. Virginia,\n48. Washington,\n49. West Virginia,\n50. Wisconsin,\n51. Wyoming,\n52. [NA] Not answered",
      "@type": "propertyValue"
    },
    {
      "name": "SD07",
      "description": "Marst",
      "value": "1. Married,\n2. Widowed,\n3. Divorced,\n4. Separated,\n5. Never married/single,\n6. [NA] Not answered",
      "@type": "propertyValue"
    },
    {
      "name": "SD09",
      "description": "Degfield",
      "value": "1. N/A,\n2. Agriculture,\n3. Environment and Natural Resources,\n4. Architecture,\n5. Area, Ethnic, and Civilization Studies,\n6. Communications,\n7. Communication Technologies,\n8. Computer and Information Sciences,\n9. Cosmetology Services and Culinary Arts,\n10. Education Administration and Teaching,\n11. Engineering,\n12. Engineering Technologies,\n13. Linguistics and Foreign Languages,\n14. Family and Consumer Sciences,\n15. Law,\n16. English Language, Literature, and Composition,\n17. Liberal Arts and Humanities,\n18. Library Science,\n19. Biology and Life Sciences,\n20. Mathematics and Statistics,\n21. Military Technologies,\n22. Interdisciplinary and Multi-Disciplinary Studies (General),\n23. Physical Fitness, Parks, Recreation, and Leisure,\n24. Philosophy and Religious Studies,\n25. Theology and Religious Vocations,\n26. Physical Sciences,\n27. Nuclear, Industrial Radiology, and Biological Technologies,\n28. Psychology,\n29. Criminal Justice and Fire Protection,\n30. Public Affairs, Policy, and Social Work,\n31. Social Sciences,\n32. Construction Services,\n33. Electrical and Mechanic Repairs and Technologies,\n34. Precision Production and Industrial Arts,\n35. Transportation Sciences and Technologies,\n36. Fine Arts,\n37. Medical and Health Sciences and Services,\n38. Business,\n39. History,\n40. [NA] Not answered",
      "@type": "propertyValue"
    },
    {
      "name": "SD11_01",
      "description": "Inctot: [01]",
      "@type": "propertyValue"
    },
    {
      "name": "CASE",
      "@type": "propertyValue"
    },
    {
      "name": "even_odd",
      "@type": "propertyValue"
    },
    {
      "name": "psychant",
      "@type": "propertyValue"
    },
    {
      "name": "psychsyn",
      "@type": "propertyValue"
    },
    {
      "name": "mahal_dist",
      "@type": "propertyValue"
    },
    {
      "name": "longstring",
      "@type": "propertyValue"
    },
    {
      "name": "time_per_item",
      "description": "Time spent on page 5",
      "@type": "propertyValue"
    },
    {
      "name": "not_serious",
      "@type": "propertyValue"
    },
    {
      "name": "included",
      "@type": "propertyValue"
    },
    {
      "name": "Submission id",
      "@type": "propertyValue"
    },
    {
      "name": "Status",
      "@type": "propertyValue"
    },
    {
      "name": "Custom study tncs accepted at",
      "@type": "propertyValue"
    },
    {
      "name": "Started at",
      "@type": "propertyValue"
    },
    {
      "name": "Completed at",
      "@type": "propertyValue"
    },
    {
      "name": "Reviewed at",
      "@type": "propertyValue"
    },
    {
      "name": "Archived at",
      "@type": "propertyValue"
    },
    {
      "name": "Time taken",
      "@type": "propertyValue"
    },
    {
      "name": "Total approvals",
      "@type": "propertyValue"
    },
    {
      "name": "Fluent languages",
      "@type": "propertyValue"
    },
    {
      "name": "Age_prolific",
      "@type": "propertyValue"
    },
    {
      "name": "Sex",
      "@type": "propertyValue"
    },
    {
      "name": "Ethnicity simplified",
      "@type": "propertyValue"
    },
    {
      "name": "Country of birth",
      "@type": "propertyValue"
    },
    {
      "name": "Country of residence",
      "@type": "propertyValue"
    },
    {
      "name": "Nationality",
      "@type": "propertyValue"
    },
    {
      "name": "Language",
      "@type": "propertyValue"
    },
    {
      "name": "Student status",
      "@type": "propertyValue"
    },
    {
      "name": "Employment status",
      "@type": "propertyValue"
    },
    {
      "name": "STARTED",
      "description": "Time the interview has started (Europe/Berlin)",
      "@type": "propertyValue"
    },
    {
      "name": "AAID_01",
      "description": "Attitudes Toward AI in Defense Scale: The use of AI in Defense could be used to spy on us",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "AAID_05",
      "description": "Attitudes Toward AI in Defense Scale: The use of AI in Defense could be used unethically by those in power",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "AAID_07",
      "description": "Attitudes Toward AI in Defense Scale: The use of AI in Defense could be used to maintain peace",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "AAID_09",
      "description": "Attitudes Toward AI in Defense Scale: The use of AI in Defense could lead to unforeseen consequences",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "AAID_12",
      "description": "Attitudes Toward AI in Defense Scale: The use of AI in Defense could save lives",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "AAID_14",
      "description": "Attitudes Toward AI in Defense Scale: The use of AI in Defense could protect critical national infrastructure",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PANAS_09",
      "description": "Positive and Negative Affect Schedule: During the last two weeks, I have felt enthusiastic",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PANAS_14",
      "description": "Positive and Negative Affect Schedule: During the last two weeks, I have felt inspired",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PANAS_10",
      "description": "Positive and Negative Affect Schedule: During the last two weeks, I have felt proud",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PANAS_05",
      "description": "Positive and Negative Affect Schedule: During the last two weeks, I have felt strong",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PANAS_08",
      "description": "Positive and Negative Affect Schedule: During the last two weeks, I have felt hostile",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PANAS_06",
      "description": "Positive and Negative Affect Schedule: During the last two weeks, I have felt guilty",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PANAS_04",
      "description": "Positive and Negative Affect Schedule: During the last two weeks, I have felt upset",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PANAS_18",
      "description": "Positive and Negative Affect Schedule: During the last two weeks, I have felt jittery",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OLBI_07",
      "description": "Oldenburg Burnout Inventory: I find my work to be a positive challenge.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OLBI_10",
      "description": "Oldenburg Burnout Inventory: After working, I have enough energy for my leisure activities.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OLBI_15",
      "description": "Oldenburg Burnout Inventory: I feel more and more engaged in my work.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OLBI_16",
      "description": "Oldenburg Burnout Inventory: When I work, I usually feel energized.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "UWES9_01",
      "description": "Utrecht Work Engagement Scale: At my work, I feel bursting with energy.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "UWES9_02",
      "description": "Utrecht Work Engagement Scale: At my job, I feel strong and vigorous.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "UWES9_03",
      "description": "Utrecht Work Engagement Scale: I am enthusiastic about my job.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "UWES9_04",
      "description": "Utrecht Work Engagement Scale: My job inspires me.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "UWES9_05",
      "description": "Utrecht Work Engagement Scale: When I get up in the morning, I feel like going to work.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "UWES9_06",
      "description": "Utrecht Work Engagement Scale: I feel happy when I am working intensely.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "UWES9_07",
      "description": "Utrecht Work Engagement Scale: I am proud of the work that I do.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "UWES9_08",
      "description": "Utrecht Work Engagement Scale: I am immersed in my work.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "UWES9_09",
      "description": "Utrecht Work Engagement Scale: I get carried away when I am working.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PAQ_08",
      "description": "Perth Alexithymia Questionnaire: When I'm feeling bad, I can't make sense of those feelings.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PAQ_20",
      "description": "Perth Alexithymia Questionnaire: When I'm feeling bad, I'm puzzled by those feelings.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PAQ_05",
      "description": "Perth Alexithymia Questionnaire: When I'm feeling good, I can't tell whether I'm happy, excited, or amused.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PAQ_17",
      "description": "Perth Alexithymia Questionnaire: When I'm feeling good, I get confused about what emotion it is.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PAQ_13",
      "description": "Perth Alexithymia Questionnaire: When something bad happens, it's hard for me to put into words how I'm feeling.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PAQ_07",
      "description": "Perth Alexithymia Questionnaire: When I'm feeling bad, I can't talk about those feelings in much depth or detail.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PAQ_10",
      "description": "Perth Alexithymia Questionnaire: When I'm feeling good, I can't talk about those feelings in much depth or detail.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PAQ_16",
      "description": "Perth Alexithymia Questionnaire: When something good happens, it's hard for me to put into words how I'm feeling.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PAQ_03",
      "description": "Perth Alexithymia Questionnaire: I tend to ignore how I feel.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PAQ_15",
      "description": "Perth Alexithymia Questionnaire: I prefer to focus on things I can actually see or touch, rather than my emotions.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_01",
      "description": "Perceived Stress Scale: In the last month, how often have you been upset because of something that happened unexpectedly?",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_02",
      "description": "Perceived Stress Scale: In the last month, how often have you felt that you were unable to control the important things in your life?",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_03",
      "description": "Perceived Stress Scale: In the last month, how often have you felt nervous and \"stressed\"?",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_08",
      "description": "Perceived Stress Scale: In the last month, how often have you found that you could not cope with all the things that you had to do?",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_11",
      "description": "Perceived Stress Scale: In the last month, how often have you been angered because of things that happened that were outside of your control?",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_12",
      "description": "Perceived Stress Scale: In the last month, how often have you found yourself thinking about things that you have to accomplish?",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_14",
      "description": "Perceived Stress Scale: In the last month, how often have you felt difficulties were piling up so high that you could not overcome them?",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "NEPS_01",
      "description": "New Ecological Paradigm Scale: We are approaching the limit of the number of people the earth can support",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "NEPS_05",
      "description": "New Ecological Paradigm Scale: Humans are severely abusing the environment",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "NEPS_07",
      "description": "New Ecological Paradigm Scale: Plants and animals have as much right as humans to exist",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "NEPS_09",
      "description": "New Ecological Paradigm Scale: Despite our special abilities humans are still subject to the laws of nature",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "NEPS_13",
      "description": "New Ecological Paradigm Scale: The balance of nature is very delicate and easily upset",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "ULS8_01",
      "description": "UCLA Loneliness Scale: I lack companionship.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "ULS8_02",
      "description": "UCLA Loneliness Scale: There is no one I can turn to.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "ULS8_04",
      "description": "UCLA Loneliness Scale: I feel left out.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "ULS8_05",
      "description": "UCLA Loneliness Scale: I feel isolated from others.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "ULS8_07",
      "description": "UCLA Loneliness Scale: I am unhappy being so withdrawn.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "ULS8_08",
      "description": "UCLA Loneliness Scale: People are around me but not with me.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "FCV19S_01",
      "description": "Fear of COVID-19 Scale: I am most afraid of coronavirus-19",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "FCV19S_02",
      "description": "Fear of COVID-19 Scale: It makes me uncomfortable to think about coronavirus-19.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "FCV19S_03",
      "description": "Fear of COVID-19 Scale: My hands become clammy when I think about coronavirus-19.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "FCV19S_04",
      "description": "Fear of COVID-19 Scale: I am afraid of losing my life because of coronavirus-19.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "FCV19S_05",
      "description": "Fear of COVID-19 Scale: When watching news and stories about coronavirus-19 on social media, I become nervous or anxious.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "FCV19S_06",
      "description": "Fear of COVID-19 Scale: I cannot sleep because I’m worrying about getting coronavirus-19.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "FCV19S_07",
      "description": "Fear of COVID-19 Scale: My heart races or palpitates when I think about getting coronavirus-19.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_05",
      "description": "Disgust Avoidance Questionnaire: I try to avoid activities that could make me feel disgusted.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_07",
      "description": "Disgust Avoidance Questionnaire: I avoid actions that remind me of repulsive things.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_09",
      "description": "Disgust Avoidance Questionnaire: I try hard to avoid situations that might bring up feelings of repulsion in me.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_11",
      "description": "Disgust Avoidance Questionnaire: I avoid certain situations that make me pay attention to disgusting things.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_15",
      "description": "Disgust Avoidance Questionnaire: I avoid objects that can trigger feelings of disgust.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_19",
      "description": "Disgust Avoidance Questionnaire: I try not to think about gross situations.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_21",
      "description": "Disgust Avoidance Questionnaire: I try hard to avoid thinking about a repulsive past situation.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_23",
      "description": "Disgust Avoidance Questionnaire: I distract myself to avoid thinking about things that disgust me.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_25",
      "description": "Disgust Avoidance Questionnaire: To avoid thinking about things that revolt me, I force myself to think about something else.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_02",
      "description": "Disgust Avoidance Questionnaire: I am quick to stop any activity that makes me feel disgusted.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_06",
      "description": "Disgust Avoidance Questionnaire: If I start feeling strong disgust, I prefer to leave the situation.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_08",
      "description": "Disgust Avoidance Questionnaire: If I am in a situation in which I feel revolted, I leave the situation immediately.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_10",
      "description": "Disgust Avoidance Questionnaire: I am quick to leave any situation that makes me feel disgusted.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_12",
      "description": "Disgust Avoidance Questionnaire: When I think about something gross, I push those thoughts out of my mind.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_14",
      "description": "Disgust Avoidance Questionnaire: When thoughts about repulsive things come up, I try very hard to stop thinking about them.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_16",
      "description": "Disgust Avoidance Questionnaire: If thoughts about disgusting things cross my mind, I try to push them away as much as possible.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "DAQ_24",
      "description": "Disgust Avoidance Questionnaire: When thoughts about revolting things come up, I try to fill my head with something else.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "WGS_01",
      "description": "Work Gratitude Scale: Right now, I have so much at work to be thankful for.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "WGS_02",
      "description": "Work Gratitude Scale: At this present time, if I had to list everything that I felt grateful for at work, it would be a very long list.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "WGS_03",
      "description": "Work Gratitude Scale: At the present time, life has been good to me at work.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "WGS_04",
      "description": "Work Gratitude Scale: Currently, I couldn’t have gotten where I am today at work without the help of many people.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "WGS_05",
      "description": "Work Gratitude Scale: Although I think it’s important to feel good about my current work accomplishments, I think that it’s also important to remember how others have contributed to my accomplishments.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "WGS_06",
      "description": "Work Gratitude Scale: Although I’m basically in control of my work at the present time, I can’t help but think about all those who have supported me and helped me along the way.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "WGS_07",
      "description": "Work Gratitude Scale: Right now, I feel deeply appreciative for the things others have done for me at work.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "WGS_08",
      "description": "Work Gratitude Scale: Currently, I think that it’s important to \"Stop and smell the roses\" as it pertains to my work.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "WGS_09",
      "description": "Work Gratitude Scale: Currently, I believe that it’s important to pause often to \"count my blessings\" at work.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "WGS_10",
      "description": "Work Gratitude Scale: Right now, I think it’s important to enjoy the simple things that pertain to my work.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_01",
      "description": "Center for Epidemiological Studies Depression Scale: I was bothered by things that usually don’t bother me.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_02",
      "description": "Center for Epidemiological Studies Depression Scale: I did not feel like eating; my appetite was poor.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_03",
      "description": "Center for Epidemiological Studies Depression Scale: I felt that I could not shake off the blues even with help from my family or friends.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_05",
      "description": "Center for Epidemiological Studies Depression Scale: I had trouble keeping my mind on what I was doing.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_06",
      "description": "Center for Epidemiological Studies Depression Scale: I felt depressed.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_07",
      "description": "Center for Epidemiological Studies Depression Scale: I felt that everything I did was an effort.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_09",
      "description": "Center for Epidemiological Studies Depression Scale: I thought my life had been a failure.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_10",
      "description": "Center for Epidemiological Studies Depression Scale: I felt fearful.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_11",
      "description": "Center for Epidemiological Studies Depression Scale: My sleep was restless.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_13",
      "description": "Center for Epidemiological Studies Depression Scale: I talked less than usual.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_14",
      "description": "Center for Epidemiological Studies Depression Scale: I felt lonely.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_15",
      "description": "Center for Epidemiological Studies Depression Scale: People were unfriendly.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_17",
      "description": "Center for Epidemiological Studies Depression Scale: I had crying spells.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_18",
      "description": "Center for Epidemiological Studies Depression Scale: I felt sad.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_19",
      "description": "Center for Epidemiological Studies Depression Scale: I felt that people dislike me.",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_20",
      "description": "Center for Epidemiological Studies Depression Scale: I could not get \"going\".",
      "value": "1. never,\n2. rarely,\n3. occasionally,\n4. sometimes,\n5. often,\n6. very often,\n7. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_01",
      "description": "HEXACO-60: I rarely hold a grudge, even against people who have badly wronged me.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_02",
      "description": "HEXACO-60: I wouldn't use flattery to get a raise or promotion at work, even if I thought it would succeed.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_06",
      "description": "HEXACO-60: Having a lot of money is not especially important to me.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_09",
      "description": "HEXACO-60: My attitude toward people who have treated me badly is “forgive and forget”.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_11",
      "description": "HEXACO-60: I tend to be lenient in judging other people.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_12",
      "description": "HEXACO-60: I would never accept a bribe, even if it were very large.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_13",
      "description": "HEXACO-60: I am usually quite flexible in my opinions when people disagree with me.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_15",
      "description": "HEXACO-60: Most people tend to get angry more quickly than I do.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_17",
      "description": "HEXACO-60: Even when people make a lot of mistakes, I rarely say anything negative.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_18",
      "description": "HEXACO-60: I wouldn't pretend to like someone just to get that person to do favors for me.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_21",
      "description": "HEXACO-60: I plan ahead and organize things, to avoid scrambling at the last minute.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_22",
      "description": "HEXACO-60: I often push myself very hard when trying to achieve a goal.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_27",
      "description": "HEXACO-60: I always try to be accurate in my work, even at the expense of time.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_29",
      "description": "HEXACO-60: People often call me a perfectionist.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_01",
      "description": "Obsessive–Compulsive Inventory: I have saved up so many things that they get in the way.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_02",
      "description": "Obsessive–Compulsive Inventory: I check things more often than necessary.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_03",
      "description": "Obsessive–Compulsive Inventory: I get upset if objects are not arranged properly.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_04",
      "description": "Obsessive–Compulsive Inventory: I feel compelled to count while I am doing things.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_05",
      "description": "Obsessive–Compulsive Inventory: I find it difficult to touch an object when I know it has been touched by strangers or certain people.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_06",
      "description": "Obsessive–Compulsive Inventory: I find it difficult to control my own thoughts.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_07",
      "description": "Obsessive–Compulsive Inventory: I collect things I don’t need.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_08",
      "description": "Obsessive–Compulsive Inventory: I repeatedly check doors, windows, drawers, etc.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_09",
      "description": "Obsessive–Compulsive Inventory: I get upset if others change the way I have arranged things.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_10",
      "description": "Obsessive–Compulsive Inventory: I feel I have to repeat certain numbers.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_11",
      "description": "Obsessive–Compulsive Inventory: I sometimes have to wash or clean myself simply because I feel contaminated.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_12",
      "description": "Obsessive–Compulsive Inventory: I am upset by unpleasant thoughts that come into my mind against my will.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_13",
      "description": "Obsessive–Compulsive Inventory: I avoid throwing things away because I am afraid I might need them later.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_14",
      "description": "Obsessive–Compulsive Inventory: I repeatedly check gas and water taps and light switches after turning them off.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_15",
      "description": "Obsessive–Compulsive Inventory: I need things to be arranged in a particular order.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_16",
      "description": "Obsessive–Compulsive Inventory: I feel that there are good and bad numbers.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_17",
      "description": "Obsessive–Compulsive Inventory: I wash my hands more often and longer than necessary.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OCIR_18",
      "description": "Obsessive–Compulsive Inventory: I frequently get nasty thoughts and have difficulty in getting rid of them.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_01",
      "description": "Perseverative Thinking Questionnaire: The same thoughts keep going through my mind again and again.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_02",
      "description": "Perseverative Thinking Questionnaire: Thoughts intrude into my mind.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_03",
      "description": "Perseverative Thinking Questionnaire: I can’t stop dwelling on negative experiences or problems.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_04",
      "description": "Perseverative Thinking Questionnaire: I think about many problems without solving any of them.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_05",
      "description": "Perseverative Thinking Questionnaire: I can’t do anything else while thinking about my problems.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_06",
      "description": "Perseverative Thinking Questionnaire: My thoughts repeat themselves.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_07",
      "description": "Perseverative Thinking Questionnaire: Thoughts come to my mind without me wanting them to.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_08",
      "description": "Perseverative Thinking Questionnaire: I get stuck on certain issues and can’t move on.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_09",
      "description": "Perseverative Thinking Questionnaire: I keep asking myself questions without finding an answer.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_10",
      "description": "Perseverative Thinking Questionnaire: My thoughts prevent me from focusing on other things.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_11",
      "description": "Perseverative Thinking Questionnaire: I keep thinking about the same issue all the time.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_12",
      "description": "Perseverative Thinking Questionnaire: Thoughts just pop into my mind.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_13",
      "description": "Perseverative Thinking Questionnaire: I feel driven to continue dwelling on the same issue.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_14",
      "description": "Perseverative Thinking Questionnaire: My thoughts are not much help to me.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PTQ_15",
      "description": "Perseverative Thinking Questionnaire: My thoughts take up all my attention.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_01",
      "description": "Revised Adult Attachment Scale: I find it relatively easy to get close to people.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_05",
      "description": "Revised Adult Attachment Scale: I am comfortable depending on others.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_06",
      "description": "Revised Adult Attachment Scale: I don’t worry about people getting too close to me.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_12",
      "description": "Revised Adult Attachment Scale: I am comfortable developing close relationships with others.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_14",
      "description": "Revised Adult Attachment Scale: I know that people will be there when I need them.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "KSA3_01",
      "description": "Authoritarianism Short Scale: We should take strong action against misfits and slackers in society.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "KSA3_02",
      "description": "Authoritarianism Short Scale: Troublemakers should be made to feel that they are not welcome in society.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "KSA3_03",
      "description": "Authoritarianism Short Scale: Rules in society should be enforced without pity.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "KSA3_04",
      "description": "Authoritarianism Short Scale: We need strong leaders so that we can live safely in society.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "KSA3_05",
      "description": "Authoritarianism Short Scale: People should leave important decisions in society to their leaders.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "KSA3_06",
      "description": "Authoritarianism Short Scale: We should be grateful for leaders telling us exactly what to do.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "KSA3_07",
      "description": "Authoritarianism Short Scale: Traditions should definitely be carried on and kept alive.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "KSA3_08",
      "description": "Authoritarianism Short Scale: Well-established behavior should not be questioned.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "KSA3_09",
      "description": "Authoritarianism Short Scale: It's always best to do things in the usual way.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "FRI_01",
      "description": "Authoritarianism Short Scale: Nuclear weapons would be dangerous if they got into the wrong hands.",
      "@type": "propertyValue"
    },
    {
      "name": "SAS_01",
      "description": "Survey Attitude Scale: I really enjoy responding to questionnaires through the mail or Internet.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "SAS_02",
      "description": "Survey Attitude Scale: I really enjoy being interviewed for a survey.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "SAS_03",
      "description": "Survey Attitude Scale: Surveys are interesting in themselves.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "SAS_04",
      "description": "Survey Attitude Scale: Surveys are important for society.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "SAS_05",
      "description": "Survey Attitude Scale: A lot can be learned from information collected through surveys.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "SAS_07",
      "description": "Survey Attitude Scale: I receive far too many requests to participate in surveys.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "SAS_08",
      "description": "Survey Attitude Scale: Opinion polls are an invasion of privacy.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "SAS_09",
      "description": "Survey Attitude Scale: It is exhaustive to answer so many questions in a survey.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_01",
      "description": "Moral Foundations Questionnaire: Compassion for those who are suffering is the most crucial virtue.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_02",
      "description": "Moral Foundations Questionnaire: When the government makes laws, the number one principle should be ensuring that everyone is treated fairly.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_03",
      "description": "Moral Foundations Questionnaire: I am proud of my country’s history.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_04",
      "description": "Moral Foundations Questionnaire: Respect for authority is something all children need to learn.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_05",
      "description": "Moral Foundations Questionnaire: People should not do things that are disgusting, even if no one is harmed.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_06",
      "description": "Moral Foundations Questionnaire: It is better to do good than to do bad.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_07",
      "description": "Moral Foundations Questionnaire: One of the worst things a person could do is hurt a defenseless animal.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_08",
      "description": "Moral Foundations Questionnaire: Justice is the most important requirement for a society.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_09",
      "description": "Moral Foundations Questionnaire: People should be loyal to their family members, even when they have done something wrong.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_10",
      "description": "Moral Foundations Questionnaire: Men and women each have different roles to play in society.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "MFQ_11",
      "description": "Moral Foundations Questionnaire: I would call some acts wrong on the grounds that they are unnatural.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_03",
      "description": "Chronotype Questionnaire: There are moments during the day where I would prefer to avoid any work.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_04",
      "description": "Chronotype Questionnaire: I feel drowsy for a long time after awakening.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_05",
      "description": "Chronotype Questionnaire: If I were to study anything by myself, I would rather do it in the evening.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_09",
      "description": "Chronotype Questionnaire: My work goes better in the afternoon than before noon.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_14",
      "description": "Chronotype Questionnaire: There are moments during the day where I feel unable to do anything.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_15",
      "description": "Chronotype Questionnaire: There are moments during the day when it is harder for me to think.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_16",
      "description": "Chronotype Questionnaire: I feel sluggish in the morning and I warm up slowly during the day.",
      "value": "1. strongly disagree,\n2. disagree,\n3. slightly disagree,\n4. neither agree nor disagree,\n5. slightly agree,\n6. agree,\n7. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "TIME002",
      "description": "Time spent on page 2",
      "@type": "propertyValue"
    },
    {
      "name": "TIME003",
      "description": "Time spent on page 3",
      "@type": "propertyValue"
    },
    {
      "name": "TIME004",
      "description": "Time spent on page 4",
      "@type": "propertyValue"
    },
    {
      "name": "TIME005",
      "description": "Time spent on page 5",
      "@type": "propertyValue"
    },
    {
      "name": "TIME006",
      "description": "Time spent on page 6",
      "@type": "propertyValue"
    },
    {
      "name": "TIME007",
      "description": "Time spent on page 7",
      "@type": "propertyValue"
    },
    {
      "name": "TIME008",
      "description": "Time spent on page 8",
      "@type": "propertyValue"
    },
    {
      "name": "TIME009",
      "description": "Time spent on page 9",
      "@type": "propertyValue"
    },
    {
      "name": "TIME010",
      "description": "Time spent on page 10",
      "@type": "propertyValue"
    },
    {
      "name": "TIME_SUM",
      "description": "Time spent overall (except outliers)",
      "@type": "propertyValue"
    },
    {
      "name": "LASTDATA",
      "description": "Time when the data was most recently updated",
      "@type": "propertyValue"
    },
    {
      "name": "FINISHED",
      "description": "Has the interview been finished (reached last page)?",
      "@type": "propertyValue"
    },
    {
      "name": "Q_VIEWER",
      "description": "Did the respondent only view the questionnaire, omitting mandatory questions?",
      "@type": "propertyValue"
    },
    {
      "name": "LASTPAGE",
      "description": "Last page that the participant has handled in the questionnaire",
      "@type": "propertyValue"
    },
    {
      "name": "MAXPAGE",
      "description": "Hindmost page handled by the participant",
      "@type": "propertyValue"
    },
    {
      "name": "MISSING",
      "description": "Missing answers in percent",
      "@type": "propertyValue"
    },
    {
      "name": "MISSREL",
      "description": "Missing answers (weighted by relevance)",
      "@type": "propertyValue"
    },
    {
      "name": "TIME_RSI",
      "description": "Completion Speed (relative)",
      "@type": "propertyValue"
    },
    {
      "name": "CESD_04_R",
      "description": "Center for Epidemiological Studies Depression Scale: I felt that I was just as good as other people.",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_08_R",
      "description": "Center for Epidemiological Studies Depression Scale: I felt hopeful about the future.",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_12_R",
      "description": "Center for Epidemiological Studies Depression Scale: I was happy.",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CESD_16_R",
      "description": "Center for Epidemiological Studies Depression Scale: I enjoyed life.",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_03_R",
      "description": "HEXACO-60: People sometimes tell me that I am too critical of others.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_04_R",
      "description": "HEXACO-60: If I knew that I could never get caught, I would be willing to steal a million dollars.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_05_R",
      "description": "HEXACO-60: People sometimes tell me that I'm too stubborn.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_07_R",
      "description": "HEXACO-60: People think of me as someone who has a quick temper.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_08_R",
      "description": "HEXACO-60: I think that I am entitled to more respect than the average person is.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_10_R",
      "description": "HEXACO-60: If I want something from someone, I will laugh at that person's worst jokes.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_14_R",
      "description": "HEXACO-60: I would get a lot of pleasure from owning expensive luxury goods.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_16_R",
      "description": "HEXACO-60: I want people to know that I am an important person of high status.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_19_R",
      "description": "HEXACO-60: When people tell me that I'm wrong, my first reaction is to argue with them.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_20_R",
      "description": "HEXACO-60: I'd be tempted to use counterfeit money, if I were sure I could get away with it.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_26_R",
      "description": "HEXACO-60: I do only the minimum amount of work needed to get by.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_25_R",
      "description": "HEXACO-60: When working, I sometimes have difficulties due to being disorganized.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_23_R",
      "description": "HEXACO-60: When working on something, I don't pay much attention to small details.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_24_R",
      "description": "HEXACO-60: I make decisions based on the feeling of the moment rather than on careful thought.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_28_R",
      "description": "HEXACO-60: I make a lot of mistakes because I don’t think before I act.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "HEXACO_30_R",
      "description": "HEXACO-60: I prefer to do whatever comes to mind, rather than stick to a plan.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "NEPS_04_R",
      "description": "New Ecological Paradigm Scale: Human ingenuity will insure that we do NOT make the earth unlivable",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "NEPS_06_R",
      "description": "New Ecological Paradigm Scale: The earth has plenty of natural resources if we just learn how to develop them",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "NEPS_08_R",
      "description": "New Ecological Paradigm Scale: The balance of nature is strong enough to cope with the impacts of modern industrial nations",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "NEPS_10_R",
      "description": "New Ecological Paradigm Scale: The so-called \"ecological crisis\" facing humankind has been greatly exaggerated",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "NEPS_12_R",
      "description": "New Ecological Paradigm Scale: Humans were meant to rule over the rest of nature",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OLBI_08_R",
      "description": "Oldenburg Burnout Inventory: During my work, I often feel emotionally drained.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OLBI_09_R",
      "description": "Oldenburg Burnout Inventory: Over time, one can become disconnected from this type of work.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OLBI_11_R",
      "description": "Oldenburg Burnout Inventory: Sometimes I feel sickened by my work tasks.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "OLBI_12_R",
      "description": "Oldenburg Burnout Inventory: After my work, I usually feel worn out and weary.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_04_R",
      "description": "Perceived Stress Scale: In the last month, how often have you dealt successfully with irritating life hassles?",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_05_R",
      "description": "Perceived Stress Scale: In the last month, how often have you felt that you were effectively coping with important changes that were occurring in your life?",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_06_R",
      "description": "Perceived Stress Scale: In the last month, how often have you felt confident about your ability to handle your personal problems?",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_07_R",
      "description": "Perceived Stress Scale: In the last month, how often have you felt that things were going your way?",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_09_R",
      "description": "Perceived Stress Scale: In the last month, how often have you been able to control irritations in your life?",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_10_R",
      "description": "Perceived Stress Scale: In the last month, how often have you felt that you were on top of things?",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "PSS_13_R",
      "description": "Perceived Stress Scale: In the last month, how often have you been able to control the way you spend your time?",
      "value": "7. never,\n6. rarely,\n5. occasionally,\n4. sometimes,\n3. often,\n2. very often,\n1. most of the time",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_02_R",
      "description": "Revised Adult Attachment Scale: I find it difficult to allow myself to depend on others.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_07_R",
      "description": "Revised Adult Attachment Scale: I find that people are never there when you need them.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_08_R",
      "description": "Revised Adult Attachment Scale: I am somewhat uncomfortable being close to others.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_13_R",
      "description": "Revised Adult Attachment Scale: I am uncomfortable when anyone gets too emotionally close to me.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_16_R",
      "description": "Revised Adult Attachment Scale: I find it difficult to trust others completely.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "RAAS_17_R",
      "description": "Revised Adult Attachment Scale: Romantic partners often want me to be emotionally closer than I feel comfortable being.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "SAS_06_R",
      "description": "Survey Attitude Scale: Completing surveys is a waste of time.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "ULS8_03_R",
      "description": "UCLA Loneliness Scale: I am an outgoing person.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "ULS8_06_R",
      "description": "UCLA Loneliness Scale: I can find companionship when I want it.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_01_R",
      "description": "Chronotype Questionnaire: I can work efficiently at any time of the day",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_02_R",
      "description": "Chronotype Questionnaire: I feel I can think the best in the morning.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_06_R",
      "description": "Chronotype Questionnaire: My mood stays the same throughout the day.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_07_R",
      "description": "Chronotype Questionnaire: I like to get up earlier then necessary, e.g. in order to prepare things for the whole day.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_08_R",
      "description": "Chronotype Questionnaire: I can focus at any time of the day.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_10_R",
      "description": "Chronotype Questionnaire: At any time of the day, my motivation is the same.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_11_R",
      "description": "Chronotype Questionnaire: I am usually in an excellent mood in the morning.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_12_R",
      "description": "Chronotype Questionnaire: If I need it, I’m able to concentrate at any time of the day.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "CQ_13_R",
      "description": "Chronotype Questionnaire: I am in my best form in the morning, in the course of the day my energy runs out.",
      "value": "7. strongly disagree,\n6. disagree,\n5. slightly disagree,\n4. neither agree nor disagree,\n3. slightly agree,\n2. agree,\n1. strongly agree",
      "maxValue": 7,
      "minValue": 1,
      "@type": "propertyValue"
    },
    {
      "name": "negative_attitude_toward_ai_in_defense",
      "description": "3 negative_attitude_toward_ai_in_defense items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "positive_attitude_toward_ai_in_defense",
      "description": "3 positive_attitude_toward_ai_in_defense items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "depression_somatic",
      "description": "7 depression_somatic items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "depression_depressive_affect",
      "description": "7 depression_depressive_affect items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "depression_well-being",
      "description": "4 depression_well-being items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "depression_interpersonal",
      "description": "2 depression_interpersonal items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "behavioral_escape",
      "description": "4 behavioral_escape items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "behavioral_prevention",
      "description": "5 behavioral_prevention items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "cognitive_escape",
      "description": "4 cognitive_escape items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "cognitive_prevention",
      "description": "4 cognitive_prevention items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "fear_of_covid-19",
      "description": "7 fear_of_covid-19 items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "agreeableness_forgiveness",
      "description": "2 agreeableness_forgiveness items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "honesty-humility_sincerity",
      "description": "3 honesty-humility_sincerity items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "agreeableness_gentleness",
      "description": "3 agreeableness_gentleness items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "honesty-humility_fairness_(hexaco)",
      "description": "3 honesty-humility_fairness_(hexaco) items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "agreeableness_flexibility",
      "description": "3 agreeableness_flexibility items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "honesty-humility_greed-avoidance",
      "description": "2 honesty-humility_greed-avoidance items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "agreeableness_patience",
      "description": "2 agreeableness_patience items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "honesty-humility_modesty",
      "description": "2 honesty-humility_modesty items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "conscientiousness_diligence",
      "description": "2 conscientiousness_diligence items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "conscientiousness_organization",
      "description": "2 conscientiousness_organization items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "conscientiousness_perfectionism",
      "description": "3 conscientiousness_perfectionism items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "conscientiousness_prudence",
      "description": "3 conscientiousness_prudence items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "authoritarianism_authoritarian_aggression",
      "description": "4 authoritarianism_authoritarian_aggression items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "authoritarianism_authoritarian_submissiveness",
      "description": "2 authoritarianism_authoritarian_submissiveness items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "authoritarianism_conventionalism",
      "description": "3 authoritarianism_conventionalism items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "harm",
      "description": "2 harm items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "fairness",
      "description": "2 fairness items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "ingroup",
      "description": "2 ingroup items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "authority",
      "description": "2 authority items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "purity",
      "description": "2 purity items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "limits_to_growth",
      "description": "2 limits_to_growth items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "antiexemptionalism",
      "description": "2 antiexemptionalism items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "eco-crisis",
      "description": "2 eco-crisis items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "human_domination",
      "description": "2 human_domination items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "balance_of_nature",
      "description": "2 balance_of_nature items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "obsessiveness-compulsiveness_hoarding",
      "description": "3 obsessiveness-compulsiveness_hoarding items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "obsessiveness-compulsiveness_checking",
      "description": "3 obsessiveness-compulsiveness_checking items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "obsessiveness-compulsiveness_ordering",
      "description": "3 obsessiveness-compulsiveness_ordering items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "obsessiveness-compulsiveness_neutralizing",
      "description": "3 obsessiveness-compulsiveness_neutralizing items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "obsessiveness-compulsiveness_washing",
      "description": "3 obsessiveness-compulsiveness_washing items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "obsessiveness-compulsiveness_obsessing",
      "description": "3 obsessiveness-compulsiveness_obsessing items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "burnout_disengagement",
      "description": "4 burnout_disengagement items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "burnout_exhaustion",
      "description": "4 burnout_exhaustion items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "negative_affect",
      "description": "4 negative_affect items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "positive_affect",
      "description": "4 positive_affect items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "alexithymia_general-externally_orientated_thinking",
      "description": "2 alexithymia_general-externally_orientated_thinking items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "alexithymia_positive-difficulty_identifying_feelings",
      "description": "2 alexithymia_positive-difficulty_identifying_feelings items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "alexithymia_negative-difficulty_describing_feelings",
      "description": "2 alexithymia_negative-difficulty_describing_feelings items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "alexithymia_negative-difficulty_identifying_feelings",
      "description": "2 alexithymia_negative-difficulty_identifying_feelings items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "alexithymia_positive-difficulty_describing_feelings",
      "description": "2 alexithymia_positive-difficulty_describing_feelings items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "perceived_stress",
      "description": "14 perceived_stress items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "perseverative_thinking_core_characteristics_of_repetitive_negative_thinking",
      "description": "9 perseverative_thinking_core_characteristics_of_repetitive_negative_thinking items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "perseverative_thinking_unproductiveness_of_repetitive_negative_thinking",
      "description": "3 perseverative_thinking_unproductiveness_of_repetitive_negative_thinking items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "perseverative_thinking_repetitive_negative_thinking_capturing_mental_capacity",
      "description": "3 perseverative_thinking_repetitive_negative_thinking_capturing_mental_capacity items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "close",
      "description": "6 close items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "depend",
      "description": "5 depend items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "survey_enjoyment",
      "description": "3 survey_enjoyment items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "survey_value",
      "description": "3 survey_value items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "survey_burden",
      "description": "3 survey_burden items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "loneliness",
      "description": "8 loneliness items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "engagement_vigor",
      "description": "3 engagement_vigor items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "engagement_dedication",
      "description": "3 engagement_dedication items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "engagement_absorption",
      "description": "3 engagement_absorption items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "work_gratitude_grateful_appraisals",
      "description": "3 work_gratitude_grateful_appraisals items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "work_gratitude_gratitude_toward_others",
      "description": "4 work_gratitude_gratitude_toward_others items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "work_gratitude_intentional_attitude_of_gratitude",
      "description": "3 work_gratitude_intentional_attitude_of_gratitude items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "distinctness",
      "description": "8 distinctness items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "morningness-eveningness",
      "description": "8 morningness-eveningness items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "depression",
      "description": "20 depression items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "agreeableness",
      "description": "10 agreeableness items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "honesty-humility",
      "description": "10 honesty-humility items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "conscientiousness",
      "description": "10 conscientiousness items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "authoritarianism",
      "description": "9 authoritarianism items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "obsessiveness-compulsiveness",
      "description": "18 obsessiveness-compulsiveness items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "burnout",
      "description": "8 burnout items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "alexithymia",
      "description": "10 alexithymia items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "perseverative_thinking",
      "description": "15 perseverative_thinking items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "engagement",
      "description": "9 engagement items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "work_gratitude",
      "description": "10 work_gratitude items aggregated by rowMeans",
      "@type": "propertyValue"
    },
    {
      "name": "non_hispanic_white",
      "@type": "propertyValue"
    }
  ]
}`
LS0tCnRpdGxlOiAiQ29kZWJvb2siCm91dHB1dDoKICBodG1sX2RvY3VtZW50OgogICAgdG9jOiB0cnVlCiAgICB0b2NfZGVwdGg6IDQKICAgIHRvY19mbG9hdDogdHJ1ZQogICAgY29kZV9mb2xkaW5nOiAnaGlkZScKICAgIHNlbGZfY29udGFpbmVkOiB0cnVlCiAgcGRmX2RvY3VtZW50OgogICAgdG9jOiB5ZXMKICAgIHRvY19kZXB0aDogNAogICAgbGF0ZXhfZW5naW5lOiB4ZWxhdGV4Ci0tLQoKTW9yZSBpbmZvcm1hdGlvbiBhYm91dCB0aGUgZGF0YSBhbmQgdGhlIGRvY3VtZW50ZWQgY2xlYW5pbmcgcHJvY2VzcyBjYW4gYmUgZm91bmQgaGVyZQpodHRwczovL3N5bnRoLXNjaWVuY2UuZ2l0aHViLmlvL3N5bnRoLXJlcC8gCgpgYGB7ciBzZXR1cH0Ka25pdHI6Om9wdHNfY2h1bmskc2V0KAogIHdhcm5pbmcgPSBUUlVFLCAjIHNob3cgd2FybmluZ3MgZHVyaW5nIGNvZGVib29rIGdlbmVyYXRpb24KICBtZXNzYWdlID0gVFJVRSwgIyBzaG93IG1lc3NhZ2VzIGR1cmluZyBjb2RlYm9vayBnZW5lcmF0aW9uCiAgZXJyb3IgPSBUUlVFLCAjIGRvIG5vdCBpbnRlcnJ1cHQgY29kZWJvb2sgZ2VuZXJhdGlvbiBpbiBjYXNlIG9mIGVycm9ycywKICAgICAgICAgICAgICAgICMgdXN1YWxseSBiZXR0ZXIgZm9yIGRlYnVnZ2luZwogIGVjaG8gPSBUUlVFICAjIHNob3cgUiBjb2RlCikKZ2dwbG90Mjo6dGhlbWVfc2V0KGdncGxvdDI6OnRoZW1lX2J3KCkpCgpgYGAKCmBgYHtyIHByZXBhcmVfY29kZWJvb2t9CmxpYnJhcnkodGlkeXZlcnNlKQpsaWJyYXJ5KGNvZGVib29rKQpsaWJyYXJ5KGhhdmVuKQpsaWJyYXJ5KGxhYmVsbGVkKQoKcnJfaHVtYW5fZGF0YV93aXRoX3JldmVyc2VkX2l0ZW1zID0gcmlvOjppbXBvcnQoImRhdGEvcHJvY2Vzc2VkL3Nvc2NpX2xhYmVsbGVkLnJkcyIpCnJldmVyc2VkX2l0ZW1zIDwtIHN0cl9zdWIobmFtZXMocnJfaHVtYW5fZGF0YV93aXRoX3JldmVyc2VkX2l0ZW1zKVtzdHJfZGV0ZWN0KG5hbWVzKHJyX2h1bWFuX2RhdGFfd2l0aF9yZXZlcnNlZF9pdGVtcyksICJfUiQiKV0sIDEsIC0zKQpycl9odW1hbl9kYXRhX3dpdGhfaW5jbHVzaW9uX2NyaXRlcmlhID0gcmlvOjppbXBvcnQoImRhdGEvcHJvY2Vzc2VkL3Nvc2NpX2xhYmVsbGVkX3dpdGhfZXhjbHVzaW9uX2NyaXRlcmlhLnJkcyIpCiMgc2V0ZGlmZihuYW1lcyhycl9odW1hbl9kYXRhX3dpdGhfaW5jbHVzaW9uX2NyaXRlcmlhKSwgbmFtZXMocnJfaHVtYW5fZGF0YV93aXRoX3JldmVyc2VkX2l0ZW1zKSkgJT4lIGRwdXQoKQpycl9odW1hbl9kYXRhX3dpdGhfaW5jbHVzaW9uX2NyaXRlcmlhIDwtIHJyX2h1bWFuX2RhdGFfd2l0aF9pbmNsdXNpb25fY3JpdGVyaWEgJT4lIHNlbGVjdChvbmVfb2YoYygiQ0FTRSIsImV2ZW5fb2RkIiwgInBzeWNoYW50IiwgCiJwc3ljaHN5biIsICJtYWhhbF9kaXN0IiwgCiJsb25nc3RyaW5nIiwgInRpbWVfcGVyX2l0ZW0iLCAibm90X3NlcmlvdXMiLCAiaW5jbHVkZWQiKSkpCnJyX2h1bWFuX2RhdGFfd2l0aF9pbmNsdXNpb25fY3JpdGVyaWEgPC0gcnJfaHVtYW5fZGF0YV93aXRoX2luY2x1c2lvbl9jcml0ZXJpYSAlPiUgCiAgZnVsbF9qb2luKHJyX2h1bWFuX2RhdGFfd2l0aF9yZXZlcnNlZF9pdGVtcykKcnJfaHVtYW5fZGF0YV9pbmNsdWRlZCA8LSBycl9odW1hbl9kYXRhX3dpdGhfaW5jbHVzaW9uX2NyaXRlcmlhICU+JSBmaWx0ZXIoaW5jbHVkZWQpICU+JSAKICBzZWxlY3QoLXN0YXJ0c193aXRoKCJCSCIpLCAtc3RhcnRzX3dpdGgoIldTIiksIC1zdGFydHNfd2l0aCgiQkZJIiksCiAgICAgICAgIC1RVUVTVE5OUiwgLU1PREUsIC1vbmVfb2YocmV2ZXJzZWRfaXRlbXMpLCAtSUZJXzAxLCAtQUNIXzAxLCAtQUNIXzAyLCAKICAgICAgICAgLUlGSV8wMiwgLUZSSV8wMiwgLXN0YXJ0c193aXRoKCJNUyIpLCAtbWF0Y2hlcygiXk9DWzAtOV0iKSwgLXN0YXJ0c193aXRoKCJQUiIpLAogICAgICAgICAtc3RhcnRzX3dpdGgoIlJHIiksIC1zdGFydHNfd2l0aCgiWlkiKSkKCnJyX2h1bWFuX2RhdGFfaW5jbHVkZWQgPC0gcnJfaHVtYW5fZGF0YV9pbmNsdWRlZCAlPiUgbXV0YXRlKAogIEFnZSA9IGFzLm51bWVyaWMoQWdlKSkgJT4lIAogIHJlbmFtZShzZXggPSBnZW5kZXIsCiAgICAgICAgIGdlbmRlciA9IFNEMTMsCiAgICAgICAgIEFnZV9wcm9saWZpYyA9IEFnZSwKICAgICAgICAgYWdlID0gU0QwMl8wMSwKICAgICAgICAgcmFjZSA9IFNEMDMsCiAgICAgICAgIGhpc3BhbmljID0gU0QwNCwKICAgICAgICAgZWR1Y2F0aW9uID0gU0QwOCwKICAgICAgICAgb2NjdXBhdGlvbiA9IFNEMTApICU+JSAKICBtdXRhdGUoCiAgICBub25faGlzcGFuaWNfd2hpdGUgPSBpZl9lbHNlKHJhY2UgPT0gIldoaXRlIiAmIGhpc3BhbmljID09ICJObywgbm90IG9mIEhpc3BhbmljLCBMYXRpbm8sIG9yIFNwYW5pc2ggb3JpZ2luIiwgMSwgMCkKICApICU+JSAKICBzZWxlY3Qoc2V4LCBnZW5kZXIsIGFnZSwgcmFjZSwgaGlzcGFuaWMsIGVkdWNhdGlvbiwgb2NjdXBhdGlvbiwgc3RhcnRzX3dpdGgoIlNEIiksIGV2ZXJ5dGhpbmcoKSkKCnRhYmxlKHJyX2h1bWFuX2RhdGFfaW5jbHVkZWQkc2V4KQpyb3VuZChwcm9wLnRhYmxlKHRhYmxlKHJyX2h1bWFuX2RhdGFfaW5jbHVkZWQkc2V4KSksMikKdGFibGUocnJfaHVtYW5fZGF0YV9pbmNsdWRlZCRnZW5kZXIpCgpvcHRpb25zKGRpZ2l0cyA9IDIpCnRhYmxlKHJyX2h1bWFuX2RhdGFfaW5jbHVkZWQkb2NjdXBhdGlvbiA9PSAiTi9BOiBVbmVtcGxveWVkIikKcHJvcC50YWJsZSh0YWJsZShycl9odW1hbl9kYXRhX2luY2x1ZGVkJG9jY3VwYXRpb24gPT0gIk4vQTogVW5lbXBsb3llZCIpKQpycl9odW1hbl9kYXRhX2luY2x1ZGVkICU+JSBzdW1tYXJpc2UoCiAgbmhfd2hpdGUgPSBzdW0obm9uX2hpc3BhbmljX3doaXRlKSwKICBuaF93aGl0ZV9wYyA9IHN1bShub25faGlzcGFuaWNfd2hpdGUpL24oKSwKICBoaXNwYW5pYyA9IHN1bShoaXNwYW5pYyAhPSAiTm8sIG5vdCBvZiBIaXNwYW5pYywgTGF0aW5vLCBvciBTcGFuaXNoIG9yaWdpbiIpLAogIGhpc3BhbmljX3BjID0gc3VtKGhpc3BhbmljKS9uKCksCiAgYmxhY2sgPSBzdW0ocmFjZSA9PSAiQmxhY2svQWZyaWNhbiBBbWVyaWNhbiIpLAogIGJsYWNrX3BjID0gc3VtKGJsYWNrKS9uKCksCikKCnRhYmxlKHJyX2h1bWFuX2RhdGFfaW5jbHVkZWQkZWR1Y2F0aW9uKQpyb3VuZChwcm9wLnRhYmxlKHRhYmxlKHJyX2h1bWFuX2RhdGFfaW5jbHVkZWQkZWR1Y2F0aW9uKSkqMTAwKQp0YWJsZShycl9odW1hbl9kYXRhX2luY2x1ZGVkJFNEMDcpCgp0YWJsZShycl9odW1hbl9kYXRhX2luY2x1ZGVkJE5hdGlvbmFsaXR5ICE9ICJVbml0ZWQgU3RhdGVzIikKCnJyX2h1bWFuX2RhdGFfaW5jbHVkZWQgJT4lIGdyb3VwX2J5KGVkdWNhdGlvbikgJT4lIAogIHN1bW1hcmlzZShuKCkpCiMgdGFibGUoc3RyX3JlcGxhY2VfYWxsKHN0cl90b19sb3dlcihzdHJfdHJpbShycl9odW1hbl9kYXRhX2luY2x1ZGVkJFNEMTNfMDIpKSwgIi0iLCAiIikpCmBgYAoKYGBge3J9CnJyX2h1bWFuX2RhdGFfc2hhcmUgPC0gcnJfaHVtYW5fZGF0YV9pbmNsdWRlZCAlPiUgc2VsZWN0KAogIENBU0UsIAogICMgRGVtb2dyYXBoaWMgdmFyaWFibGVzCiAgYWdlLCBBZ2VfcHJvbGlmaWMsIHNleCwgZ2VuZGVyLAogIGVkdWNhdGlvbiwgb2NjdXBhdGlvbiwgTmF0aW9uYWxpdHksCiAgcmFjZSwgaGlzcGFuaWMsIG5vbl9oaXNwYW5pY193aGl0ZSwKICAKICAjIE1ldGFkYXRhL1F1YWxpdHkgQ29udHJvbCB2YXJpYWJsZXMKICBldmVuX29kZCwgcHN5Y2hhbnQsIHBzeWNoc3luLCBtYWhhbF9kaXN0LAogIGxvbmdzdHJpbmcsIHRpbWVfcGVyX2l0ZW0sIGluY2x1ZGVkLCBub3Rfc2VyaW91cywKICBMYW5ndWFnZSwgdG90YWxfYXBwcm92YWxzID0gYFRvdGFsIGFwcHJvdmFsc2AsCiAgCiAgIyBNYWluIHF1ZXN0aW9ubmFpcmUgaXRlbXMgKHVzaW5nIHN0YXJ0c193aXRoKQogIHN0YXJ0c193aXRoKGMoIkFBSUQiLCAiUEFOQVMiLCAiUEFRIiwgIlBTUyIsICJORVBTIiwgCiAgICAgICAgICAgICAgICAiVUxTIiwgIkZDViIsICJEQVEiLCAiQ0VTRCIsICJIRVhBQ08iLCAKICAgICAgICAgICAgICAgICJPQ0lSIiwgIlBUUSIsICJSQUFTIiwgIktTQSIsICJTQVMiLCAKICAgICAgICAgICAgICAgICJNRlEiLCAiQ1EiLCAiT0xCSSIsICJVV0VTIiwgIldHUyIpKSwKICAKICAjIEV4cGxpY2l0bHkgZXhjbHVkZSByZXZlcnNlZCBpdGVtcwogIC1lbmRzX3dpdGgoIl9SIiksCiAgCiAgIyBFeHBsaWNpdGx5IGV4Y2x1ZGUgb3RoZXIgcHJlZml4ZXMvcGF0dGVybnMKICAtc3RhcnRzX3dpdGgoYygiQkgiLCAiV1MiLCAiQkZJIiwgIk1TIiwgIlBSIiwgIlJHIiwgIlpZIikpLAogIC1tYXRjaGVzKCJeT0NbMC05XSIpLAopCgpoYXZlbjo6d3JpdGVfc2F2KHJyX2h1bWFuX2RhdGFfc2hhcmUsICJkb2NzL3JyX2RhdGEuc2F2IikKcmlvOjpleHBvcnQocnJfaHVtYW5fZGF0YV9zaGFyZSwgImRvY3MvcnJfZGF0YS5jc3YiKQpyaW86OmV4cG9ydChycl9odW1hbl9kYXRhX3NoYXJlLCAiZG9jcy9ycl9kYXRhLnJkcyIpCmBgYAoKCmBgYHtyIGNvZGVib29rfQpjb2RlYm9vayhycl9odW1hbl9kYXRhX2luY2x1ZGVkKQpgYGAK