fridriik commited on
Commit
56cf98a
·
1 Parent(s): 9c8f3f5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +182 -0
README.md CHANGED
@@ -1,3 +1,185 @@
1
  ---
2
  license: cc-by-nc-4.0
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
+ task_categories:
4
+ - tabular-classification
5
+ language:
6
+ - es
7
+ pretty_name: Mental health of people in Argentina post quarantine COVID-19 Dataset
8
+ size_categories:
9
+ - 1K<n<10K
10
  ---
11
+
12
+ # Mental health of people in Argentina post quarantine COVID-19 Dataset
13
+
14
+ ### Dataset Summary
15
+
16
+ Dataset modified for research from:
17
+ Levels and predictors of depression, anxiety, and suicidal risk during COVID-19 pandemic in Argentina:
18
+ The impacts of quarantine extensions on mental health state created by López Steinmetz, Lorena Cecilia for Universidad Nacional de Córdoba.
19
+ Facultad de Psicología; Argentina. Consejo Nacional de Investigaciones Científicas y Técnicas.
20
+ Instituto de Investigaciones Psicológicas; Argentina.
21
+ http://hdl.handle.net/11086/20168
22
+
23
+ The dataset underwent modifications as follows:
24
+ SUB PERIODS and SEX columns were removed.
25
+ Rows with PROVINCE equal to 'Otro' or 'other' were removed.
26
+ Additionally, rows with EDUCATION equal to 'Otro' were removed.
27
+
28
+ The following columns were transformed from non-numeric values to numeric values:
29
+ ```
30
+ 'MENTAL DISORDER HISTORY': {'no': 0, 'yes': 50}
31
+ 'EDUCATION': {
32
+ 'Completed postgraduate': 30,
33
+ 'Incomplete tertiary or university': 60,
34
+ 'Completed high school': 70,
35
+ 'Incomplete postgraduate': 40,
36
+ 'Completed tertiary or university': 50,
37
+ 'Incomplete high school': 80,
38
+ 'Incomplete elementary school': 100,
39
+ 'Completed elementary school': 90}
40
+ 'SUIC ATTEMPT HISTORY': {'ideation': 50, 'no': 0, 'yes': 100}
41
+ 'LIVING WITH SOMEBODY': {'no': 20, 'yes': 0}
42
+ 'ECONOMIC INCOME': {'yes': 0, 'no': 50}
43
+ ```
44
+
45
+ Furthermore, a new column 'REGION' was added to provinces according to the following assignment function:
46
+ ```
47
+ def assign_region(province):
48
+ if province in ['Corrientes', 'Chaco', 'Misiones', 'Formosa', 'Entre Ríos']:
49
+ return 'Nordeste-Litoral'
50
+ elif province in ['Tucumán', 'Jujuy', 'Salta', 'Catamarca', 'Santiago del Estero']:
51
+ return 'Noroeste'
52
+ elif province in ['San Luis', 'San Juan', 'Mendoza', 'La Rioja']:
53
+ return 'Cuyo'
54
+ elif province in ['Neuquén', 'Río Negro', 'La Pampa']:
55
+ return 'Patagonia Centro-Norte'
56
+ elif province in ['Tierra del Fuego', 'Santa Cruz', 'Chubut']:
57
+ return 'Patagonia Centro-Sur'
58
+ elif province == 'Santa Fe':
59
+ return 'Santa Fe'
60
+ elif province == 'Buenos Aires provincia':
61
+ return 'Buenos Aires'
62
+ elif province == 'Córdoba':
63
+ return 'Córdoba'
64
+ else:
65
+ return 'CABA'
66
+ ```
67
+
68
+ ### Supported Tasks and Leaderboards
69
+
70
+ `mental-health-arg-post-quarantine-covid19-model`:
71
+ The dataset can be used to train a model for Mental health of people in Argentina post quarantine COVID-19.
72
+
73
+ ### Languages
74
+
75
+ The text in the dataset is in Spanish
76
+
77
+ ## Dataset Structure
78
+
79
+ ### Data Instances
80
+
81
+ ```
82
+ {
83
+ 'EDUCATION': '30',
84
+ 'PROVINCE': 'CABA (Buenos Aires capital)',
85
+ 'AGE': '30',
86
+ 'MENTAL DISORDER HISTORY': '0',
87
+ 'SUIC ATTEMPT HISTORY': '50',
88
+ 'LIVING WITH SOMEBODY': '20'
89
+ 'ECONOMIC INCOME': '0',
90
+ 'DEPRESSION': '21',
91
+ 'SUIC RISK': '37',
92
+ 'ANXIETY STATE': '54',
93
+ 'ANXIETY TRAIT': '40',
94
+ 'REGION': 'CABA'
95
+ }
96
+ ```
97
+
98
+ ### Data Fields
99
+
100
+ - `EDUCATION`: Maximum level of education attained by the individual, modified:
101
+ 'Completed postgraduate': 30,
102
+ 'Incomplete tertiary or university': 60,
103
+ 'Completed high school': 70,
104
+ 'Incomplete postgraduate': 40,
105
+ 'Completed tertiary or university': 50,
106
+ 'Incomplete high school': 80,
107
+ 'Incomplete elementary school': 100,
108
+ 'Completed elementary school': 90
109
+ - `PROVINCE`: Name of the province where the individual resides.
110
+ - `AGE`: Age of the individual.
111
+ - `MENTAL DISORDER HISTORY`: If the individual has a history of mental disorder, modified: 'no': 0, 'yes': 50.
112
+ - `SUIC ATTEMPT HISTORY`: If the individual has a history of suicide attempt, modifed: 'ideation': 50, 'no': 0, 'yes': 100.
113
+ - `LIVING WITH SOMEBODY`: If the individual lives alone or not, modified: 'no': 20, 'yes': 0.
114
+ - `ECONOMIC INCOME`: If the individual has an economic income, modified: 'yes': 0, 'no': 50.
115
+ - `DEPRESSION`: Level of depression of the individual.
116
+ - `SUIC RISK`: Level of suicide risk of the individual.
117
+ - `ANXIETY STATE`: Level of anxiety state at the moment of the individual.
118
+ - `ANXIETY TRAIT`: Level of anxiety predisposition of the individual.
119
+ - `REGION`: Name of the region where the individual resides.
120
+
121
+ ## Dataset Creation
122
+
123
+ ### Curation Rationale
124
+
125
+ This dataset was built for research.
126
+
127
+ ### Source Data
128
+
129
+ #### Initial Data Collection and Normalization
130
+
131
+ The data was obtained and created by López Steinmetz, Lorena Cecilia.
132
+
133
+ #### Who are the source language producers?
134
+
135
+ López Steinmetz, Lorena Cecilia.
136
+
137
+ ## Considerations for Using the Data
138
+
139
+ ### Social Impact of Dataset
140
+
141
+ The purpose of this dataset is for research, it has data about serious topics related to individuals' mental health.
142
+ It should not be taken as practical advice for real-life situations, except for the possibility that in the future,
143
+ the dataset could be improved and discussions with its authors could facilitate extended usage.
144
+
145
+ ## Additional Information
146
+
147
+ ### Dataset Curators
148
+
149
+ The dataset was initially created by López Steinmetz and Lorena Cecilia, modified by Farias Federico, Arroyo Guadalupe and Avalos Manuel.
150
+
151
+ ### Licensing Information
152
+
153
+ Except where otherwise noted, this item's license is described as
154
+ Atribución-NoComercial 4.0 Internacional (http://creativecommons.org/licenses/by-nc/4.0/).
155
+
156
+ ### Citation Information
157
+ ```
158
+ {
159
+ dc.contributor.author=López Steinmetz, Lorena Cecilia
160
+ dc.date.accessioned=2021-09-06T18:46:43Z
161
+ dc.date.available=2021-09-06T18:46:43Z
162
+ dc.date.issued=2021-05-03
163
+ dc.identifier.citation=López Steinmetz, L. C. (2021, May 3). R Code and dataset for: Levels and predictors of depression, anxiety, and suicidal risk during COVID-19 pandemic in Argentina: The impacts of quarantine extensions on mental health state. Retrieved from osf.io/gkcn7
164
+ dc.identifier.uri=http://hdl.handle.net/11086/20168
165
+ dc.description.abstract=This study is part of a broader research assessing mental health state indicators in a sample of the Argentinean general population during the lengthy Argentinean quarantine. This study has two main aims: 1) to analyze differences in specific mental health state (MHS) indicators (depression, state-anxiety, trait-anxiety, and suicidal risk), during three quarantine sub-periods (starting since the first quarantine extension); 2) to assess multiple relationships between each specific MHS indicator and potentially affecting factors. eng
166
+ dc.description.abstract=Este estudio forma parte de una investigación más amplia que evalúa los indicadores del estado de salud mental en una muestra de la población general argentina durante la larga cuarentena argentina. Este estudio tiene dos objetivos principales 1) analizar las diferencias en indicadores específicos del estado de salud mental (depresión, ansiedad-estado, ansiedad-rasgo y riesgo suicida), durante tres subperíodos de cuarentena (a partir de la primera extensión de la cuarentena); 2) evaluar las múltiples relaciones entre cada indicador específico del estado de salud mental y los factores que potencialmente lo afectan. es
167
+ dc.language.iso=eng eng
168
+ dc.relation.uri=info:eurepo/semantics/reference/url/https://osf.io/gkcn7/
169
+ dc.rights=Atribución-NoComercial 4.0 Internacional *
170
+ dc.rights.uri=http://creativecommons.org/licenses/by-nc/4.0/ *
171
+ dc.subject=Health state indicators eng
172
+ dc.subject=COVID-19
173
+ dc.subject=SARS-CoV-2
174
+ dc.subject=Quarantine eng
175
+ dc.subject=Depression eng
176
+ dc.subject=State-anxiety eng
177
+ dc.subject=https://purl.org/becyt/ford/5.1
178
+ dc.title=R Code and dataset for: Levels and predictors of depression, anxiety, and suicidal risk during COVID-19 pandemic in Argentina: The impacts of quarantine extensions on mental health state eng
179
+ dc.title=Niveles y predictores de depresión, ansiedad y riesgo de suicidio durante la pandemia de COVID-19 en Argentina: los impactos de las extensiones de la cuarentena en el estado de salud mental spa
180
+ dc.type=dataSet eng
181
+ dc.coverage=ARG
182
+ dc.description.fil=Fil: López Steinmetz, Lorena Cecilia. Universidad Nacional de Córdoba. Facultad de Psicología; Argentina.
183
+ dc.description.fil=Fil: López Steinmetz, Lorena Cecilia. Consejo Nacional de Investigaciones Científicas y Técnicas. Instituto de Investigaciones Psicológicas; Argentina.
184
+ }
185
+ ```