xf3227 commited on
Commit
8ea5177
·
1 Parent(s): 2730dad
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import streamlit as st
2
  import json
3
  import random
 
4
 
5
  # set page configuration to wide mode
6
  st.set_page_config(layout="wide")
@@ -71,7 +72,7 @@ with layout_l:
71
  json_input = st.text_area(
72
  "Please enter JSON-formatted input features:",
73
  value = st.session_state.input_text,
74
- height = 250
75
  )
76
 
77
  # create three columns
@@ -99,10 +100,12 @@ elif submit_button:
99
  pred_dict = predict_proba(data_dict)
100
  with layout_r:
101
  st.write("Predicted probabilities:")
102
- st.json(pred_dict)
103
  except json.JSONDecodeError as e:
104
  # Handle JSON parsing errors
105
  st.error(f"An error occurred: {e}")
106
 
107
  # section 3
108
-
 
 
 
1
  import streamlit as st
2
  import json
3
  import random
4
+ import pandas as pd
5
 
6
  # set page configuration to wide mode
7
  st.set_page_config(layout="wide")
 
72
  json_input = st.text_area(
73
  "Please enter JSON-formatted input features:",
74
  value = st.session_state.input_text,
75
+ height = 300
76
  )
77
 
78
  # create three columns
 
100
  pred_dict = predict_proba(data_dict)
101
  with layout_r:
102
  st.write("Predicted probabilities:")
103
+ st.code(json.dumps(pred_dict, indent=2))
104
  except json.JSONDecodeError as e:
105
  # Handle JSON parsing errors
106
  st.error(f"An error occurred: {e}")
107
 
108
  # section 3
109
+ st.markdown("#### Feature Table")
110
+ df_input_meta_info = pd.read_csv('./data/input_meta_info.csv')
111
+ st.table(df_input_meta_info)
data/gen_nacc_meta.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # %%
2
+ import pandas as pd
3
+ import tomllib
4
+
5
+ with open('./default_conf_new.toml', 'rb') as file:
6
+ feature_names = tomllib.load(file)['feature'].keys()
7
+
8
+ # %%
9
+ df_var = pd.read_csv("./nacc_variable.csv")
10
+ dict_1 = dict(zip(df_var['id'], df_var['descriptor']))
11
+ dict_description = dict(zip(feature_names, [None] * len(feature_names)))
12
+ for k in dict_description:
13
+ try:
14
+ if k == 'his_LIVSIT':
15
+ dict_description[k] = dict_1['NACCLIVS']
16
+ else:
17
+ dict_description[k] = dict_1[k.split('_')[-1]]
18
+ except:
19
+ print(k)
20
+
21
+ # %%
22
+ df_meta = pd.DataFrame()
23
+ df_meta['Name'] = dict_description.keys()
24
+ df_meta['Description'] = dict_description.values()
25
+ df_meta.to_csv('./input_meta_info.csv', index=False)
26
+ # %%
data/input_meta_info.csv ADDED
@@ -0,0 +1,392 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Name,Description
2
+ his_NACCREAS,Primary reason for coming to ADC
3
+ his_NACCREFR,Principal referral source
4
+ his_SEX,Subject's sex
5
+ his_HISPANIC,Hispanic/Latino ethnicity
6
+ his_HISPOR,Hispanic origins
7
+ his_RACE,Race
8
+ his_RACESEC,Second race
9
+ his_RACETER,Third race
10
+ his_PRIMLANG,Primary language
11
+ his_MARISTAT,Marital status
12
+ his_LIVSIT,Living situation
13
+ his_INDEPEND,Level of independence
14
+ his_RESIDENC,Type of residence
15
+ his_HANDED,Is the subject left- or right-handed?
16
+ his_NACCNIHR,Derived NIH race definitions
17
+ his_NACCFAM,Indicator of first-degree family member with cognitive impairment
18
+ his_NACCMOM,Indicator of mother with cognitive impairment
19
+ his_NACCDAD,Indicator of father with cognitive impairment
20
+ his_NACCFADM,"In this family, is there evidence of a dominantly inherited AD mutation?"
21
+ his_NACCAM,"In this family, is there evidence for an AD mutation (from list of specific mutations)?"
22
+ his_NACCAMS,Source of evidence for AD mutation
23
+ his_NACCFFTD,"In this family, is there evidence for an FTLD mutation?"
24
+ his_NACCFM,"In this family, is there evidence for an FTLD mutation (from list of specific mutations)?"
25
+ his_NACCFMS,Source of evidence for FTLD mutation
26
+ his_NACCOM,"In this family, is there evidence for a mutation other than an AD or FTLD mutation?"
27
+ his_NACCOMS,Source of evidence for other mutation
28
+ his_TOBAC30,Smoked cigarettes in last 30 days
29
+ his_TOBAC100,Smoked more than 100 cigarettes in life
30
+ his_ALCOCCAS,"In the past three months, has the subject consumed any alcohol?"
31
+ his_ALCFREQ,"During the past three months, how often did the subject have at least one drink of any alcoholic beverage such as wine, beer, malt liquor, or spirits?"
32
+ his_CVHATT,Heart attack/cardiac arrest
33
+ his_HATTMULT,More than one heart attack/cardiac arrest?
34
+ his_CVAFIB,Atrial fibrillation
35
+ his_CVANGIO,Angioplasty/endarterectomy/stent
36
+ his_CVBYPASS,Cardiac bypass procedure
37
+ his_CVPACDEF,Pacemaker and/or defibrillator
38
+ his_CVPACE,Pacemaker
39
+ his_CVCHF,Congestive heart failure
40
+ his_CVANGINA,Angina
41
+ his_CVHVALVE,Heart valve replacement or repair
42
+ his_CVOTHR,Other cardiovascular disease
43
+ his_CBSTROKE,Stroke
44
+ his_STROKMUL,More than one stroke reported as of the Initial Visit
45
+ his_CBTIA,Transient ischemic attack (TIA)
46
+ his_TIAMULT,More than one TIA reported as of the Initial Visit
47
+ his_PD,Parkinson's disease (PD)
48
+ his_PDOTHR,Other parkinsonian disorder
49
+ his_SEIZURES,Seizures
50
+ his_TBI,Traumatic brain injury (TbI)
51
+ his_TBIBRIEF,Traumatic brain injury (TbI) with brief loss of consciousness
52
+ his_TRAUMBRF,brain trauma - brief unconsciousness
53
+ his_TBIEXTEN,TbI with extended loss of consciousness - 5 minutes of longer
54
+ his_TRAUMEXT,brain trauma - extended unconsciousness
55
+ his_TBIWOLOS,TbI without loss of consciousness - as might result from military detonations or sports injury
56
+ his_TRAUMCHR,brain trauma - chronic deficit
57
+ his_NCOTHR,Other neurological condition
58
+ his_DIABETES,Diabetes
59
+ his_DIABTYPE,"If Recent/active or Remote/inactive diabetes, which type?"
60
+ his_HYPERTEN,Hypertension
61
+ his_HYPERCHO,Hypercholesterolemia
62
+ his_B12DEF,Vitamin b12 deficiency
63
+ his_THYROID,Thyroid disease
64
+ his_ARTHRIT,Arthritis
65
+ his_ARTHTYPE,Type of arthritis
66
+ his_ARTHUPEX,"Arthritis, region affected - upper extremity"
67
+ his_ARTHLOEX,"Arthritis, region affected - lower extremity"
68
+ his_ARTHSPIN,"Arthritis, region affected - spine"
69
+ his_ARTHUNK,Region affected - unknown
70
+ his_INCONTU,Incontinence - urinary
71
+ his_INCONTF,Incontinence - bowel
72
+ his_APNEA,Sleep apnea history reported at Initial Visit
73
+ his_RBD,REM sleep behavior disorder (RbD) history reported at Initial Visit
74
+ his_INSOMN,Hyposomnia/insomnia history reported at Initial Visit
75
+ his_OTHSLEEP,Other sleep disorder history reported at Initial Visit
76
+ his_ALCOHOL,"Alcohol abuse - clinically significant occurring over a 12-month period manifested in one of the following areas: work, driving, legal, or social"
77
+ his_ABUSOTHR,"Other abused substances - clinically significant impairment occurring over a 12-month period manifested in one of the following areas: work, driving, legal, or social"
78
+ his_PTSD,Post-traumatic stress disorder (PTSD)
79
+ his_BIPOLAR,bipolar disorder
80
+ his_SCHIZ,Schizophrenia
81
+ his_DEP2YRS,Active depression in the last two years
82
+ his_DEPOTHR,Depression episodes more than two years ago
83
+ his_ANXIETY,Anxiety
84
+ his_OCD,Obsessive-compulsive disorder (OCD)
85
+ his_NPSYDEV,"Developmental neuropsychiatric disorders (e.g., autism spectrum disorder [ASD], attention-deficit hyperactivity disorder [ADHD], dyslexia)"
86
+ his_PSYCDIS,Other psychiatric disorder
87
+ his_NACCTBI,History of traumatic brain injury (TbI)
88
+ med_ANYMEDS,Subject taking any medications
89
+ med_NACCAHTN,Reported current use of any type of antihypertensive or blood pressure medication
90
+ med_NACCHTNC,Reported current use of an antihypertensive combination therapy
91
+ med_NACCACEI,Reported current use of an angiotensin converting enzyme (ACE) inhibitor
92
+ med_NACCAAAS,Reported current use of an antiadrenergic agent
93
+ med_NACCBETA,Reported current use of a beta-adrenergic blocking agent (beta-blocker)
94
+ med_NACCCCBS,Reported current use of a calcium channel blocking agent
95
+ med_NACCDIUR,Reported current use of a diuretic
96
+ med_NACCVASD,Reported current use of a vasodilator
97
+ med_NACCANGI,Reported current use of an angiotensin II inhibitor
98
+ med_NACCLIPL,Reported current use of lipid lowering medication
99
+ med_NACCNSD,Reported current use of nonsteroidal anti-inflammatory medication
100
+ med_NACCAC,Reported current use of an anticoagulant or antiplatelet agent
101
+ med_NACCADEP,Reported current use of an antidepressant
102
+ med_NACCAPSY,Reported current use of an antipsychotic agent
103
+ med_NACCAANX,"Reported current use of an anxiolytic, sedative, or hypnotic agent"
104
+ med_NACCADMD,Reported current use of a FDA-approved medication for Alzheimer's disease symptoms
105
+ med_NACCPDMD,Reported current use of an antiparkinson agent
106
+ med_NACCEMD,Reported current use of estrogen hormone therapy
107
+ med_NACCEPMD,Reported current use of estrogen + progestin hormone therapy
108
+ med_NACCDBMD,Reported current use of a diabetes medication
109
+ ph_VISION,"Without corrective lenses, is the subject's vision functionally normal?"
110
+ ph_VISCORR,Does the subject usually wear corrective lenses?
111
+ ph_VISWCORR,"If the subject usually wears corrective lenses, is the subject's vision functionally normal with corrective lenses?"
112
+ ph_HEARING,"Without a hearing aid(s), is the subject's hearing functionally normal?"
113
+ ph_HEARAID,Does the subject usually wear a hearing aid(s)?
114
+ ph_HEARWAID,"If the subject usually wears a hearing aid(s), is the subject's hearing functionally normal with a hearing aid(s)?"
115
+ cvd_ABRUPT,Abrupt onset (re: cognitive status)
116
+ cvd_STEPWISE,Stepwise deterioration (re: cognitive status)
117
+ cvd_SOMATIC,Somatic complaints
118
+ cvd_EMOT,Emotional incontinence
119
+ cvd_HXHYPER,History or presence of hypertension
120
+ cvd_HXSTROKE,History of stroke
121
+ cvd_FOCLSYM,Focal neurological symptoms
122
+ cvd_FOCLSIGN,Focal neurological signs
123
+ cvd_CVDCOG,Cerebrovascular disease contributing to cognitive impairment
124
+ cvd_STROKCOG,Relationship between stroke and cognitive impairment
125
+ cvd_CVDIMAG,Imaging evidence
126
+ cvd_CVDIMAG1,Single strategic infarct
127
+ cvd_CVDIMAG2,Multiple infarcts
128
+ cvd_CVDIMAG3,Extensive white matter hyperintensity
129
+ cvd_CVDIMAG4,Other imaging evidence
130
+ updrs_PDNORMAL,UPDRS normal
131
+ updrs_SPEECH,Speech
132
+ updrs_FACEXP,Facial expression
133
+ updrs_TRESTFAC,"Tremor at rest - face, lips, chin"
134
+ updrs_TRESTRHD,Tremor at rest - right hand
135
+ updrs_TRESTLHD,Tremor at rest - left hand
136
+ updrs_TRESTRFT,Tremor at rest - right foot
137
+ updrs_TRESTLFT,Tremor at rest - left foot
138
+ updrs_TRACTRHD,Action or postural tremor - right hand
139
+ updrs_TRACTLHD,Action or postural tremor - left hand
140
+ updrs_RIGDNECK,Rigidity - neck
141
+ updrs_RIGDUPRT,Rigidity - right upper extremity
142
+ updrs_RIGDUPLF,Rigidity - left upper extremity
143
+ updrs_RIGDLORT,Rigidity - right lower extremity
144
+ updrs_RIGDLOLF,Rigidity - left lower extremity
145
+ updrs_TAPSRT,Finger taps - right hand
146
+ updrs_TAPSLF,Finger taps - left hand
147
+ updrs_HANDMOVR,Hand movements - right hand
148
+ updrs_HANDMOVL,Hand movements - left hand
149
+ updrs_HANDALTR,Alternating movement - right hand
150
+ updrs_HANDALTL,Alternating movement - left hand
151
+ updrs_LEGRT,Leg agility - right leg
152
+ updrs_LEGLF,Leg agility - left leg
153
+ updrs_ARISING,Arising from chair
154
+ updrs_POSTURE,Posture
155
+ updrs_GAIT,Gait
156
+ updrs_POSSTAB,Posture stability
157
+ updrs_BRADYKIN,body bradykinesia and hypokinesia
158
+ npiq_NPIQINF,NPI-Q co-participant
159
+ npiq_DEL,Delusions in the last month
160
+ npiq_HALL,Hallucinations in the last month
161
+ npiq_AGIT,Agitation or aggression in the last month
162
+ npiq_DEPD,Depression or dysphoria in the last month
163
+ npiq_ANX,Anxiety in the last month
164
+ npiq_ELAT,Elation or euphoria in the last month
165
+ npiq_APA,Apathy or indifference in the last month
166
+ npiq_DISN,Disinhibition in the last month
167
+ npiq_IRR,Irritability or lability in the last month
168
+ npiq_MOT,Motor disturbance in the last month
169
+ npiq_NITE,Nighttime behaviors in the last month
170
+ npiq_APP,Appetite and eating problems in the last month
171
+ gds_NOGDS,"Is the subject able to complete the GDS, based on the clinician's best judgment?"
172
+ gds_SATIS,Are you basically satisfied with your life?
173
+ gds_DROPACT,Have you dropped many of your activities and interests?
174
+ gds_EMPTY,Do you feel that your life is empty?
175
+ gds_BORED,Do you often get bored?
176
+ gds_SPIRITS,Are you in good spirits most of the time?
177
+ gds_AFRAID,Are you afraid that something bad is going to happen to you?
178
+ gds_HAPPY,Do you feel happy most of the time?
179
+ gds_HELPLESS,Do you often feel helpless?
180
+ gds_STAYHOME,"Do you prefer to stay at home, rather than going out and doing new things?"
181
+ gds_MEMPROB,Do you feel you have more problems with memory than most?
182
+ gds_WONDRFUL,Do you think it is wonderful to be alive now?
183
+ gds_WRTHLESS,Do you feel pretty worthless the way you are now?
184
+ gds_ENERGY,Do you feel full of energy?
185
+ gds_HOPELESS,Do you feel that your situation is hopeless?
186
+ gds_BETTER,Do you think that most people are better off than you are?
187
+ faq_BILLS,"In the past four weeks, did the subject have any difficulty or need help with: Writing checks, paying bills, or balancing a checkbook"
188
+ faq_TAXES,"In the past four weeks, did the subject have any difficulty or need help with: Assembling tax records, business affairs, or other paper"
189
+ faq_SHOPPING,"In the past four weeks, did the subject have any difficulty or need help with: Shopping alone for clothes, household necessities, or groceries"
190
+ faq_GAMES,"In the past four weeks, did the subject have any difficulty or need help with: Playing a game of skill such as bridge or chess, working on a hobby"
191
+ faq_STOVE,"In the past four weeks, did the subject have any difficulty or need help with: Heating water, making a cup of coffee, turning off the stove"
192
+ faq_MEALPREP,"In the past four weeks, did the subject have any difficulty or need help with: Preparing a balanced meal"
193
+ faq_EVENTS,"In the past four weeks, did the subject have any difficulty or need help with: Keeping track of current events"
194
+ faq_PAYATTN,"In the past four weeks, did the subject have any difficulty or need help with: Paying attention to and understanding a TV program, book, or magazine"
195
+ faq_REMDATES,"In the past four weeks, did the subject have any difficulty or need help with: Remembering appointments, family occasions, idays, medications"
196
+ faq_TRAVEL,"In the past four weeks, did the subject have any difficulty or need help with: Traveling out of the neighborhood, driving, or arranging to take public transportation"
197
+ exam_NACCNREX,Were all findings unremarkable?
198
+ exam_NORMEXAM,Were there abnormal neurological exam findings?
199
+ exam_FOCLDEF,Are focal deficits present indicative of central nervous system disorder?
200
+ exam_GAITDIS,Is gait disorder present indicative of central nervous system disorder?
201
+ exam_EYEMOVE,Are there eye movement abnormalities present indicative of central nervous system disorder?
202
+ exam_PARKSIGN,Parkinsonian signs
203
+ exam_RESTTRL,Resting tremor - left arm
204
+ exam_RESTTRR,Resting tremor - right arm
205
+ exam_SLOWINGL,Slowing of fine motor movements - left side
206
+ exam_SLOWINGR,Slowing of fine motor movements - right side
207
+ exam_RIGIDL,Rigidity - left arm
208
+ exam_RIGIDR,Rigidity - right arm
209
+ exam_BRADY,bradykinesia
210
+ exam_PARKGAIT,Parkinsonian gait disorder
211
+ exam_POSTINST,Postural instability
212
+ exam_CVDSIGNS,Neurological sign considered by examiner to be most likely consistent with cerebrovascular disease
213
+ exam_CORTDEF,"Cortical cognitive deficit (e.g., aphasia, apraxia, neglect)"
214
+ exam_SIVDFIND,Focal or other neurological findings consistent with SIVD (subcortical ischemic vascular dementia)
215
+ exam_CVDMOTL,"Motor (may include weakness of combination of face, arm, and leg; reflex changes, etc.) - left side"
216
+ exam_CVDMOTR,"Motor (may include weakness of combination of face, arm, and leg; reflex changes, etc.) - right side"
217
+ exam_CORTVISL,Cortical visual field loss - left side
218
+ exam_CORTVISR,Cortical visual field loss - right side
219
+ exam_SOMATL,Somatosensory loss - left side
220
+ exam_SOMATR,Somatosensory loss - right side
221
+ exam_POSTCORT,"Higher cortical visual problem suggesting posterior cortical atrophy (e.g., prosopagnosia, simultagnosia, balint's syndrome) or apraxia of gaze"
222
+ exam_PSPCBS,"Findings suggestive of progressive supranuclear palsy (PSP), corticobasal syndrome (CbS), or other related disorders"
223
+ exam_EYEPSP,Eye movement changes consistent with PSP
224
+ exam_DYSPSP,Dysarthria consistent with PSP
225
+ exam_AXIALPSP,Axial rigidity consistent with PSP
226
+ exam_GAITPSP,Gait disorder consistent with PSP
227
+ exam_APRAXSP,Apraxia of speech
228
+ exam_APRAXL,Apraxia consistent with CbS - left side
229
+ exam_APRAXR,Apraxia consistent with CbS - right side
230
+ exam_CORTSENL,Cortical sensory deficits consistent with CbS - left side
231
+ exam_CORTSENR,Cortical sensory deficits consistent with CbS - right side
232
+ exam_ATAXL,Ataxia consistent with CbS - left side
233
+ exam_ATAXR,Ataxia consistent with CbS - right side
234
+ exam_ALIENLML,Alien limb consistent with CbS - left side
235
+ exam_ALIENLMR,Alien limb consistent with CbS - right side
236
+ exam_DYSTONL,"Dystonia consistent with CbS, PSP, or related disorder - left side"
237
+ exam_DYSTONR,"Dystonia consistent with CbS, PSP, or related disorder - right side"
238
+ exam_MYOCLLT,Myoclonus consistent with CbS - left side
239
+ exam_MYOCLRT,Myoclonus consistent with CbS - right side
240
+ exam_ALSFIND,"Findings suggesting ALS (e.g., muscle wasting, fasciculations, upper motor and/or lower motor neuron signs)"
241
+ exam_GAITNPH,Normal pressure hydrocephalus - gait apraxia
242
+ exam_OTHNEUR,"Other findings (e.g., cerebella ataxia, chorea, myoclonus)"
243
+ bat_MMSECOMP,Was any part of the MMSE completed?
244
+ bat_MMSELOC,Administration of the MMSE was:
245
+ bat_MMSELAN,Language of MMSE administration
246
+ bat_MMSEVIS,Subject was unable to complete one or more sections due to visual impairment
247
+ bat_MMSEHEAR,Subject was unable to complete one or more sections due to hearing impairment
248
+ bat_NPSYCLOC,The remainder of the battery was administered:
249
+ bat_NPSYLAN,Language of test administration
250
+ bat_UDSBENRS,Recognized original stimulus from among four options
251
+ bat_COGSTAT,"Per clinician, based on the neuropsychological examination, the subject's cognitive status is deemed"
252
+ bat_MODCOMM,Modality of communication used to administer neuropsychological battery
253
+ bat_MOCACOMP,Was any part of MoCA administered?
254
+ bat_MOCAREAS,"If no part of MoCA administered, reason code"
255
+ bat_MOCALOC,Where was MoCA administered?
256
+ bat_MOCALAN,Language of MoCA administration
257
+ bat_MOCAVIS,Subject was unable to complete one or more sections due to visual impairment
258
+ bat_MOCAHEAR,Subject was unable to complete one or more sections due to hearing impairment
259
+ bat_CRAFTCUE,Craft Story 21 Recall (Delayed) - Cue (boy) needed
260
+ bat_RESPVAL,How valid do you think the participant's responses are?
261
+ bat_RESPHEAR,What makes this participant's responses less valid? Hearing impairment
262
+ bat_RESPDIST,What makes this participant's responses less valid? Distractions
263
+ bat_RESPINTR,What makes this participant's responses less valid? Interruptions
264
+ bat_RESPDISN,What makes this participant's responses less valid? Lack of effort or disinterest
265
+ bat_RESPFATG,What makes this participant's responses less valid? Fatigue
266
+ bat_RESPEMOT,What makes this participant's responses less valid? Emotional issues
267
+ bat_RESPASST,What makes this participant's responses less valid? Unapproved assistance
268
+ bat_RESPOTH,What makes this participant's responses less valid? Other
269
+ apoe_NACCNE4S,Number of APOE e4 alleles
270
+ his_BIRTHMO,Subject's month of birth
271
+ his_PACKSPER,Average number of packs smoked per day
272
+ bat_PENTAGON,Intersecting pentagon subscale score
273
+ bat_LOGIMO,"If this test has been administered to the subject within the past 3 months, specify the date previously administered (month)"
274
+ bat_LOGIDAY,"If this test has been administered to the subject within the past 3 months, specify the date previously administered (day)"
275
+ bat_MOCATRAI,MoCA: Visuospatial/executive - Trails
276
+ bat_MOCACUBE,MoCA: Visuospatial/executive - Cube
277
+ bat_MOCACLOC,MoCA: Visuospatial/executive - Clock contour
278
+ bat_MOCACLON,MoCA: Visuospatial/executive - Clock numbers
279
+ bat_MOCACLOH,MoCA: Visuospatial/executive - Clock hands
280
+ bat_MOCALETT,MoCA: Attention - Letter A
281
+ bat_MOCAFLUE,MoCA: Language - Fluency
282
+ bat_MOCAORDT,MoCA: Orientation - Date
283
+ bat_MOCAORMO,MoCA: Orientation - Month
284
+ bat_MOCAORYR,MoCA: Orientation - Year
285
+ bat_MOCAORDY,MoCA: Orientation - Day
286
+ bat_MOCAORPL,MoCA: Orientation - Place
287
+ bat_MOCAORCT,MoCA: Orientation - City
288
+ his_BIRTHYR,Subject's year of birth
289
+ his_EDUC,Years of education
290
+ his_NACCAGE,Subject's age at visit
291
+ his_SMOKYRS,Total years smoked cigarettes
292
+ his_QUITSMOK,"If the subject quit smoking, age at which he/she last smoked (i.e., quit)"
293
+ his_HATTYEAR,Year of most recent heart attack
294
+ his_NACCSTYR,Most recently reported year of stroke as of the Initial Visit
295
+ his_NACCTIYR,Most recently reported year of TIA as of the Initial Visit
296
+ his_PDYR,Year of PD diagnosis
297
+ his_PDOTHRYR,Year of parkinsonian disorder diagnosis
298
+ his_TBIYEAR,Year of most recent TbI
299
+ med_NACCAMD,Total number of medications reported at each visit
300
+ ph_HEIGHT,Subject's height (inches)
301
+ ph_WEIGHT,Subject's weight (lbs)
302
+ ph_NACCBMI,body mass index (bMI)
303
+ ph_BPSYS,"Subject blood pressure (sitting), systolic"
304
+ ph_BPDIAS,"Subject blood pressure (sitting), diastolic"
305
+ ph_HRATE,Subject resting heart rate (pulse)
306
+ cvd_HACHIN,Hachinski ischemic score
307
+ gds_NACCGDS,Total GDS Score
308
+ bat_MMSEORDA,Orientation subscale score - Time
309
+ bat_MMSEORLO,Orientation subscale score - Place
310
+ bat_NACCMMSE,Total MMSE score (using D-L-R-O-W)
311
+ bat_LOGIYR,"If this test has been administered to the subject within the past 3 months, specify the date previously administered (year)"
312
+ bat_LOGIPREV,Total score from the previous test administration
313
+ bat_LOGIMEM,Total number of story units recalled from this current test administration
314
+ bat_MEMUNITS,Logical Memory IIA - Delayed - Total number of story units recalled
315
+ bat_MEMTIME,Logical Memory IIA - Delayed - Time elapsed since Logical Memory IA - Immediate
316
+ bat_UDSBENTC,Total score for copy of benson figure
317
+ bat_UDSBENTD,Total score for 10- to 15-minute delayed drawing of benson figure
318
+ bat_DIGIF,Digit span forward trials correct
319
+ bat_DIGIFLEN,Digit span forward length
320
+ bat_DIGIB,Digit span backward trials correct
321
+ bat_DIGIBLEN,Digit span backward length
322
+ bat_ANIMALS,Animals - Total number of animals named in 60 seconds
323
+ bat_VEG,Vegetable - Total number of vegetables named in 60 seconds
324
+ bat_TRAILA,Trail Making Test Part A - Total number of seconds to complete
325
+ bat_TRAILARR,Part A - Number of commission errors
326
+ bat_TRAILALI,Part A - Number of correct lines
327
+ bat_TRAILB,Trail Making Test Part b - Total number of seconds to complete
328
+ bat_TRAILBRR,Part b - Number of commission errors
329
+ bat_TRAILBLI,Part b - Number of correct lines
330
+ bat_WAIS,WAIS-R Digit Symbol
331
+ bat_BOSTON,boston Naming Test (30) - Total score
332
+ bat_UDSVERFC,Number of correct F-words generated in 1 minute
333
+ bat_UDSVERFN,Number of F-words repeated in 1 minute
334
+ bat_UDSVERNF,Number of non-F-words and rule violation errors in 1 minute
335
+ bat_UDSVERLC,Number of correct L-words generated in 1 minute
336
+ bat_UDSVERLR,Number of L-words repeated in 1 minute
337
+ bat_UDSVERLN,Number of non-L-words and rule violation errors in 1 minute
338
+ bat_UDSVERTN,Total number of correct F-words and L-words
339
+ bat_UDSVERTE,Total number of F-word and L-word repetition errors
340
+ bat_UDSVERTI,Total number of non-F/L-words and rule violation errors
341
+ bat_MOCATOTS,MoCA Total Raw Score - uncorrected
342
+ bat_NACCMOCA,MoCA Total Score - corrected for education
343
+ bat_MOCANAMI,MoCA: Language - Naming
344
+ bat_MOCAREGI,MoCA: Memory - Registration (two trials)
345
+ bat_MOCADIGI,MoCA: Attention - Digits
346
+ bat_MOCASER7,MoCA: Attention - Serial 7s
347
+ bat_MOCAREPE,MoCA: Language - Repetition
348
+ bat_MOCAABST,MoCA: Abstraction
349
+ bat_MOCARECN,MoCA: Delayed recall - No cue
350
+ bat_MOCARECC,MoCA: Delayed recall - Category cue
351
+ bat_MOCARECR,MoCA: Delayed recall - Recognition
352
+ bat_CRAFTVRS,"Craft Story 21 Recall (Immediate) - Total story units recalled, verbatim scoring"
353
+ bat_CRAFTURS,"Craft Story 21 Recall (Immediate) - Total story units recalled, paraphrase scoring"
354
+ bat_DIGFORCT,Number Span Test: Forward - Number of correct trials
355
+ bat_DIGFORSL,Number Span Test: Forward - Longest span forward
356
+ bat_DIGBACCT,Number Span Test: backward - Number of correct trials
357
+ bat_DIGBACLS,Number Span Test: backward - Longest span backward
358
+ bat_CRAFTDVR,"Craft Story 21 Recall (Delayed) - Total story units recalled, verbatim scoring"
359
+ bat_CRAFTDRE,"Craft Story 21 Recall (Delayed) - Total story units recalled, paraphrase scoring"
360
+ bat_CRAFTDTI,Craft Story 21 Recall (Delayed) - Delay time
361
+ bat_MINTTOTS,Multilingual Naming Test (MINT) - Total score
362
+ bat_MINTTOTW,Multilingual Naming Test (MINT) - Total correct without semantic cue
363
+ bat_MINTSCNG,Multilingual Naming Test (MINT) - Semantic cues: Number given
364
+ bat_MINTSCNC,Multilingual Naming Test (MINT) - Semantic cues: Number correct with cue
365
+ bat_MINTPCNG,Multilingual Naming Test (MINT) - Phonemic cues: Number given
366
+ bat_MINTPCNC,Multilingual Naming Test (MINT) - Phonemic cues: Number correct with cue
367
+ bat_MOCBTOTS,MoCA blind Total raw score - uncorrected
368
+ bat_NACCMOCB,MoCA-blind Total Score - corrected for education
369
+ bat_REY1REC,Rey Auditory Verbal Learning: Trial 1 total recall
370
+ bat_REY1INT,Rey Auditory Verbal Learning: Trial 1 intrusions
371
+ bat_REY2REC,Rey Auditory Verbal Learning: Trial 2 total recall
372
+ bat_REY2INT,Rey Auditory Verbal Learning: Trial 2 intrusions
373
+ bat_REY3REC,Rey Auditory Verbal Learning: Trial 3 total recall
374
+ bat_REY3INT,Rey Auditory Verbal Learning: Trial 3 intrusions
375
+ bat_REY4REC,Rey Auditory Verbal Learning: Trial 4 total recall
376
+ bat_REY4INT,Rey Auditory Verbal Learning: Trial 4 intrusions
377
+ bat_REY5REC,Rey Auditory Verbal Learning: Trial 5 total recall
378
+ bat_REY5INT,Rey Auditory Verbal Learning: Trial 5 intrusions
379
+ bat_REY6REC,Rey Auditory Verbal Learning: Trial 6 total recall
380
+ bat_REY6INT,Rey Auditory Verbal Learning: Trial 6 intrusions
381
+ bat_OTRAILA,Oral Trail Making Test - Part A: Total number of seconds to complete
382
+ bat_OTRLARR,Oral Trail Making Test - Part A: Number of commission errors
383
+ bat_OTRLALI,Oral Trail Making Test - Part A: Number of correct lines
384
+ bat_OTRAILB,Oral Trail Making Test Part b: Total number of seconds to complete
385
+ bat_OTRLBRR,Oral Trail Making Test Part b: Number of commission errors
386
+ bat_OTRLBLI,Oral Trail Making Test Part b: Number of correct lines
387
+ bat_REYDREC,Rey Auditory Verbal Learning: total delayed recall
388
+ bat_REYDINT,Rey Auditory Verbal Learning: delayed intrusions
389
+ bat_REYTCOR,Rey Auditory Verbal Learning: recognition total correct
390
+ bat_REYFPOS,Rey Auditory Verbal Learning: recognition total false positives
391
+ bat_VNTTOTW,Verbal naming test: total correct without a cue
392
+ bat_VNTPCNC,Verbal naming test: total correct with a phonemic cue
data/nacc_allowable_code.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/nacc_variable.csv ADDED
@@ -0,0 +1,810 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id,form_id,variable_type_id,source,descriptor
2
+ NACCID,U1,D,v1-3,Subject ID number
3
+ NACCADC,U1,D,v1-3,ADC at which subject was seen
4
+ PACKET,U1,O,v1-3,Packet code
5
+ FORMVER,U1,O,v1-3,Form version number
6
+ VISITMO,U1,O,v1-3,Form date - month
7
+ VISITDAY,U1,O,v1-3,Form date - day
8
+ VISITYR,U1,O,v1-3,Form date - year
9
+ NACCVNUM,U1,D,v1-3,UDS visit number (order)
10
+ NACCAVST,U1,D,v1-3,Total number of all UDS visits made
11
+ NACCNVST,U1,D,v1-3,Total number of in-person UDS visits made
12
+ NACCDAYS,U1,D,v1-3,Days from initial visit to most recent visit
13
+ NACCFDYS,U1,D,v1-3,Days from initial visit to each follow-up visit
14
+ NACCDIED,U2,D,v1-3,Subject is known to be deceased
15
+ NACCMOD,U2,D,v1-3,Month of death
16
+ NACCYOD,U2,D,v1-3,Year of death
17
+ NACCACTV,U2,D,v1-3,Follow-up status at the Alzheimer's Disease Center (ADC)
18
+ NACCNOVS,U2,D,v1-3,No longer followed annually in person or by telephone
19
+ NACCDSMO,U2,D,v1-3,Month of discontinuation from annual follow-up
20
+ NACCDSDY,U2,D,v1-3,Day of discontinuation from annual follow-up
21
+ NACCDSYR,U2,D,v1-3,Year of discontinuation from annual follow-up
22
+ NACCNURP,U2,D,v1-3,Permanently moved to a nursing home
23
+ NACCNRMO,U2,D,v1-3,Month permanently moved to nursing home
24
+ NACCNRDY,U2,D,v1-3,Day permanently moved to nursing home
25
+ NACCNRYR,U2,D,v1-3,Year permanently moved to nursing home
26
+ NACCMDSS,U2,D,v1-3,Subject's status in the Minimal Data Set (MDS) and Uniform Data Set (UDS)
27
+ NACCPAFF,U2,D,v1-3,Previously affiliated subject
28
+ TELCOV,T1,O,v3,Why is the UDS telephone follow-up protocol being used to obtain data about the subject? COVID pandemic precludes traditional in-person UDS visit.
29
+ TELMOD,T1,O,v3,What modality of communication was used to collect this remote UDS packet?
30
+ NACCREAS,A1,D,v1-3,Primary reason for coming to ADC
31
+ NACCREFR,A1,D,v1-3,Principal referral source
32
+ BIRTHMO,A1,O,v1-3,Subject's month of birth
33
+ BIRTHYR,A1,O,v1-3,Subject's year of birth
34
+ SEX,A1,O,v1-3,Subject's sex
35
+ HISPANIC,A1,O,v1-3,Hispanic/Latino ethnicity
36
+ HISPOR,A1,O,v1-3,Hispanic origins
37
+ HISPORX,A1,O,v1-3,"Hispanic origins, other - specify"
38
+ RACE,A1,O,v1-3,Race
39
+ RACEX,A1,O,v1-3,"Race, other - specify"
40
+ RACESEC,A1,O,v1-3,Second race
41
+ RACESECX,A1,O,v1-3,"Second race, other - specify"
42
+ RACETER,A1,O,v1-3,Third race
43
+ RACETERX,A1,O,v1-3,"Third race, other - specify"
44
+ PRIMLANG,A1,O,v1-3,Primary language
45
+ PRIMLANX,A1,O,v1-3,"Primary language, other- specify"
46
+ EDUC,A1,O,v1-3,Years of education
47
+ MARISTAT,A1,O,v1-3,Marital status
48
+ NACCLIVS,A1,D,v1-3,Living situation
49
+ INDEPEND,A1,O,v1-3,Level of independence
50
+ RESIDENC,A1,O,v1-3,Type of residence
51
+ HANDED,A1,O,v1-3,Is the subject left- or right-handed?
52
+ NACCAGE,A1,D,v1-3,Subject's age at visit
53
+ NACCAGEB,A1,D,v1-3,Subject's age at initial visit
54
+ NACCNIHR,A1,D,v1-3,Derived NIH race definitions
55
+ INBIRMO,A2,O,v1-3,Co-participant's month of birth
56
+ INBIRYR,A2,O,v1-3,Co-participant's year of birth
57
+ INSEX,A2,O,v1-3,Co-participant's sex
58
+ NEWINF,A2,O,v1-3,"Is this a new co-participant - i.e., one who was not a co-participant at any past UDS visit?"
59
+ INHISP,A2,O,v1-3,Co-participant Hispanic/Latino ethnicity
60
+ INHISPOR,A2,O,v1-3,Co-participant's Hispanic origins
61
+ INHISPOX,A2,O,v1-3,"Co-participant of Hispanic origins, other (specify)"
62
+ INRACE,A2,O,v1-3,Co-participant race
63
+ INRACEX,A2,O,v1-3,"Co-participant race, other (specify)"
64
+ INRASEC,A2,O,v1-3,Co-participant second race
65
+ INRASECX,A2,O,v1-3,"Co-participant second race, other (specify)"
66
+ INRATER,A2,O,v1-3,Co-participant third race
67
+ INRATERX,A2,O,v1-3,"Co-participant third race, other (specify)"
68
+ INEDUC,A2,O,v1-3,Co-participant's years of education
69
+ INRELTO,A2,O,v1-3,Co-participant's relationship to subject
70
+ INRELTOX,A2,O,v1-2,"Co-participant relationship, other (specify)"
71
+ INKNOWN,A2,O,v3,How long has the co-participant known the subject?
72
+ INLIVWTH,A2,O,v1-3,Does the co-participant live with the subject?
73
+ INVISITS,A2,O,v1-3,"If no, approximate frequency of in-person visits?"
74
+ INCALLS,A2,O,v1-3,"If no, approximate frequency of telephone contact?"
75
+ INRELY,A2,O,v1-3,Is there a question about the co-participant's reliability?
76
+ NACCNINR,A2,D,v1-3,Derived NIH race definitions
77
+ NACCFAM,A3,D,v1-3,Indicator of first-degree family member with cognitive impairment
78
+ NACCMOM,A3,D,v1-3,Indicator of mother with cognitive impairment
79
+ NACCDAD,A3,D,v1-3,Indicator of father with cognitive impairment
80
+ NACCFADM,A3,D,v3,"In this family, is there evidence of a dominantly inherited AD mutation?"
81
+ NACCAM,A3,D,v3,"In this family, is there evidence for an AD mutation (from list of specific mutations)?"
82
+ NACCAMX,A3,D,v3,"If yes, Other (specify)"
83
+ NACCAMS,A3,D,v3,Source of evidence for AD mutation
84
+ NACCAMSX,A3,D,v3,"If other, specify"
85
+ NACCFFTD,A3,D,v3,"In this family, is there evidence for an FTLD mutation?"
86
+ NACCFM,A3,D,v3,"In this family, is there evidence for an FTLD mutation (from list of specific mutations)?"
87
+ NACCFMX,A3,D,v3,"If yes, Other (specify)"
88
+ NACCFMS,A3,D,v3,Source of evidence for FTLD mutation
89
+ NACCFMSX,A3,D,v3,"If other, specify"
90
+ NACCOM,A3,D,v3,"In this family, is there evidence for a mutation other than an AD or FTLD mutation?"
91
+ NACCOMX,A3,D,v3,Specified other mutation
92
+ NACCOMS,A3,D,v3,Source of evidence for other mutation
93
+ NACCOMSX,A3,D,v3,"If other, specify"
94
+ ANYMEDS,A4,O,v1-3,Subject taking any medications
95
+ DRUG1-DRUG40,A4,O,v1-3,Name of medications used within two weeks of UDS visit
96
+ NACCAMD,A4,D,v1-3,Total number of medications reported at each visit
97
+ NACCAHTN,A4,D,v1-3,Reported current use of any type of antihypertensive or blood pressure medication
98
+ NACCHTNC,A4,D,v1-3,Reported current use of an antihypertensive combination therapy
99
+ NACCACEI,A4,D,v1-3,Reported current use of an angiotensin converting enzyme (ACE) inhibitor
100
+ NACCAAAS,A4,D,v1-3,Reported current use of an antiadrenergic agent
101
+ NACCBETA,A4,D,v1-3,Reported current use of a beta-adrenergic blocking agent (beta-blocker)
102
+ NACCCCBS,A4,D,v1-3,Reported current use of a calcium channel blocking agent
103
+ NACCDIUR,A4,D,v1-3,Reported current use of a diuretic
104
+ NACCVASD,A4,D,v1-3,Reported current use of a vasodilator
105
+ NACCANGI,A4,D,v1-3,Reported current use of an angiotensin II inhibitor
106
+ NACCLIPL,A4,D,v1-3,Reported current use of lipid lowering medication
107
+ NACCNSD,A4,D,v1-3,Reported current use of nonsteroidal anti-inflammatory medication
108
+ NACCAC,A4,D,v1-3,Reported current use of an anticoagulant or antiplatelet agent
109
+ NACCADEP,A4,D,v1-3,Reported current use of an antidepressant
110
+ NACCAPSY,A4,D,v1-3,Reported current use of an antipsychotic agent
111
+ NACCAANX,A4,D,v1-3,"Reported current use of an anxiolytic, sedative, or hypnotic agent"
112
+ NACCADMD,A4,D,v1-3,Reported current use of a FDA-approved medication for Alzheimer's disease symptoms
113
+ NACCPDMD,A4,D,v1-3,Reported current use of an antiparkinson agent
114
+ NACCEMD,A4,D,v1-3,Reported current use of estrogen hormone therapy
115
+ NACCEPMD,A4,D,v1-3,Reported current use of estrogen + progestin hormone therapy
116
+ NACCDBMD,A4,D,v1-3,Reported current use of a diabetes medication
117
+ TOBAC30,A5,O,v1-3,Smoked cigarettes in last 30 days
118
+ TOBAC100,A5,O,v1-3,Smoked more than 100 cigarettes in life
119
+ SMOKYRS,A5,O,v1-3,Total years smoked cigarettes
120
+ PACKSPER,A5,O,v1-3,Average number of packs smoked per day
121
+ QUITSMOK,A5,O,v1-3,"If the subject quit smoking, age at which he/she last smoked (i.e., quit)"
122
+ ALCOCCAS,A5,O,v3,"In the past three months, has the subject consumed any alcohol?"
123
+ ALCFREQ,A5,O,v3,"During the past three months, how often did the subject have at least one drink of any alcoholic beverage such as wine, beer, malt liquor, or spirits?"
124
+ CVHATT,A5,O,v1-3,Heart attack/cardiac arrest
125
+ HATTMULT,A5,O,v3,More than one heart attack/cardiac arrest?
126
+ HATTYEAR,A5,O,v3,Year of most recent heart attack
127
+ CVAFIB,A5,O,v1-3,Atrial fibrillation
128
+ CVANGIO,A5,O,v1-3,Angioplasty/endarterectomy/stent
129
+ CVBYPASS,A5,O,v1-3,Cardiac bypass procedure
130
+ CVPACDEF,A5,O,v3,Pacemaker and/or defibrillator
131
+ CVPACE,A5,O,v1-2,Pacemaker
132
+ CVCHF,A5,O,v1-3,Congestive heart failure
133
+ CVANGINA,A5,O,v3,Angina
134
+ CVHVALVE,A5,O,v3,Heart valve replacement or repair
135
+ CVOTHR,A5,O,v1-3,Other cardiovascular disease
136
+ CVOTHRX,A5,O,v3,Specification for other cardiovascular disease
137
+ CBSTROKE,A5,O,v1-3,Stroke
138
+ STROKMUL,A5,O,v3,More than one stroke reported as of the Initial Visit
139
+ NACCSTYR,A5,D,v1-3,Most recently reported year of stroke as of the Initial Visit
140
+ CBTIA,A5,O,v1-3,Transient ischemic attack (TIA)
141
+ TIAMULT,A5,O,v3,More than one TIA reported as of the Initial Visit
142
+ NACCTIYR,A5,D,v1-3,Most recently reported year of TIA as of the Initial Visit
143
+ PD,A5,O,v1-3,Parkinson's disease (PD)
144
+ PDYR,A5,O,v1-3,Year of PD diagnosis
145
+ PDOTHR,A5,O,v1-3,Other parkinsonian disorder
146
+ PDOTHRYR,A5,O,v1-3,Year of parkinsonian disorder diagnosis
147
+ SEIZURES,A5,O,v1-3,Seizures
148
+ TBI,A5,O,v3,Traumatic brain injury (TbI)
149
+ TBIBRIEF,A5,O,v3,Traumatic brain injury (TbI) with brief loss of consciousness
150
+ TRAUMBRF,A5,O,v1-2,brain trauma - brief unconsciousness
151
+ TBIEXTEN,A5,O,v3,TbI with extended loss of consciousness - 5 minutes of longer
152
+ TRAUMEXT,A5,O,v1-2,brain trauma - extended unconsciousness
153
+ TBIWOLOS,A5,O,v3,TbI without loss of consciousness - as might result from military detonations or sports injury
154
+ TRAUMCHR,A5,O,v1-2,brain trauma - chronic deficit
155
+ TBIYEAR,A5,O,v3,Year of most recent TbI
156
+ NCOTHR,A5,O,v1-2,Other neurological condition
157
+ NCOTHRX,A5,O,v1-2,Other neurological condition (specify)
158
+ DIABETES,A5,O,v1-3,Diabetes
159
+ DIABTYPE,A5,O,v3,"If Recent/active or Remote/inactive diabetes, which type?"
160
+ HYPERTEN,A5,O,v1-3,Hypertension
161
+ HYPERCHO,A5,O,v1-3,Hypercholesterolemia
162
+ B12DEF,A5,O,v1-3,Vitamin b12 deficiency
163
+ THYROID,A5,O,v1-3,Thyroid disease
164
+ ARTHRIT,A5,O,v3,Arthritis
165
+ ARTHTYPE,A5,O,v3,Type of arthritis
166
+ ARTHTYPX,A5,O,v3,Other arthritis (specify)
167
+ ARTHUPEX,A5,O,v3,"Arthritis, region affected - upper extremity"
168
+ ARTHLOEX,A5,O,v3,"Arthritis, region affected - lower extremity"
169
+ ARTHSPIN,A5,O,v3,"Arthritis, region affected - spine"
170
+ ARTHUNK,A5,O,v3,Region affected - unknown
171
+ INCONTU,A5,O,v1-3,Incontinence - urinary
172
+ INCONTF,A5,O,v1-3,Incontinence - bowel
173
+ APNEA,A5,O,v3,Sleep apnea history reported at Initial Visit
174
+ RBD,A5,O,v3,REM sleep behavior disorder (RbD) history reported at Initial Visit
175
+ INSOMN,A5,O,v3,Hyposomnia/insomnia history reported at Initial Visit
176
+ OTHSLEEP,A5,O,v3,Other sleep disorder history reported at Initial Visit
177
+ OTHSLEEX,A5,O,v3,Other sleep disorder (specify)
178
+ ALCOHOL,A5,O,v1-3,"Alcohol abuse - clinically significant occurring over a 12-month period manifested in one of the following areas: work, driving, legal, or social"
179
+ ABUSOTHR,A5,O,v1-3,"Other abused substances - clinically significant impairment occurring over a 12-month period manifested in one of the following areas: work, driving, legal, or social"
180
+ ABUSX,A5,O,v1-3,"If reported other abused substances, specify abused substance(s)"
181
+ PTSD,A5,O,v3,Post-traumatic stress disorder (PTSD)
182
+ BIPOLAR,A5,O,v3,bipolar disorder
183
+ SCHIZ,A5,O,v3,Schizophrenia
184
+ DEP2YRS,A5,O,v1-3,Active depression in the last two years
185
+ DEPOTHR,A5,O,v1-3,Depression episodes more than two years ago
186
+ ANXIETY,A5,O,v3,Anxiety
187
+ OCD,A5,O,v3,Obsessive-compulsive disorder (OCD)
188
+ NPSYDEV,A5,O,v3,"Developmental neuropsychiatric disorders (e.g., autism spectrum disorder [ASD], attention-deficit hyperactivity disorder [ADHD], dyslexia)"
189
+ PSYCDIS,A5,O,v1-3,Other psychiatric disorder
190
+ PSYCDISX,A5,O,v1-3,"If recent/active or remote/inactive psychiatric disorder, specify disorder"
191
+ NACCTBI,A5,D,v1-3,History of traumatic brain injury (TbI)
192
+ HEIGHT,B1,O,v1-3,Subject's height (inches)
193
+ WEIGHT,B1,O,v1-3,Subject's weight (lbs)
194
+ NACCBMI,B1,D,v1-3,body mass index (bMI)
195
+ BPSYS,B1,O,v1-3,"Subject blood pressure (sitting), systolic"
196
+ BPDIAS,B1,O,v1-3,"Subject blood pressure (sitting), diastolic"
197
+ HRATE,B1,O,v1-3,Subject resting heart rate (pulse)
198
+ VISION,B1,O,v1-3,"Without corrective lenses, is the subject's vision functionally normal?"
199
+ VISCORR,B1,O,v1-3,Does the subject usually wear corrective lenses?
200
+ VISWCORR,B1,O,v1-3,"If the subject usually wears corrective lenses, is the subject's vision functionally normal with corrective lenses?"
201
+ HEARING,B1,O,v1-3,"Without a hearing aid(s), is the subject's hearing functionally normal?"
202
+ HEARAID,B1,O,v1-3,Does the subject usually wear a hearing aid(s)?
203
+ HEARWAID,B1,O,v1-3,"If the subject usually wears a hearing aid(s), is the subject's hearing functionally normal with a hearing aid(s)?"
204
+ BPSYSL,B1a,O,v3,"Participant systolic blood pressure, left arm"
205
+ BPDIASL,B1a,O,v3,"Participant diastolic blood pressure, left arm"
206
+ BPSYSR,B1a,O,v3,"Participant systolic blood pressure, right arm"
207
+ BPDIASR,B1a,O,v3,"Participant diastolic blood pressure, right arm"
208
+ BPDEVICE,B1a,O,v3,Taken using an approved device or cuff?
209
+ ABRUPT,B2,O,v1-2,Abrupt onset (re: cognitive status)
210
+ STEPWISE,B2,O,v1-2,Stepwise deterioration (re: cognitive status)
211
+ SOMATIC,B2,O,v1-2,Somatic complaints
212
+ EMOT,B2,O,v1-2,Emotional incontinence
213
+ HXHYPER,B2,O,v1-2,History or presence of hypertension
214
+ HXSTROKE,B2,O,v1-2,History of stroke
215
+ FOCLSYM,B2,O,v1-2,Focal neurological symptoms
216
+ FOCLSIGN,B2,O,v1-2,Focal neurological signs
217
+ HACHIN,B2,O,v1-2,Hachinski ischemic score
218
+ CVDCOG,B2,O,v2,Cerebrovascular disease contributing to cognitive impairment
219
+ STROKCOG,B2,O,v2,Relationship between stroke and cognitive impairment
220
+ CVDIMAG,B2,O,v2,Imaging evidence
221
+ CVDIMAG1,B2,O,v2,Single strategic infarct
222
+ CVDIMAG2,B2,O,v2,Multiple infarcts
223
+ CVDIMAG3,B2,O,v2,Extensive white matter hyperintensity
224
+ CVDIMAG4,B2,O,v2,Other imaging evidence
225
+ CVDIMAGX,B2,O,v2,Other imaging evidence - specify
226
+ PDNORMAL,B3,O,v1-2,UPDRS normal
227
+ SPEECH,B3,O,v1-2,Speech
228
+ SPEECHX,B3,O,v2,Speech; untestable - specify reason
229
+ FACEXP,B3,O,v1-2,Facial expression
230
+ FACEXPX,B3,O,v2,Facial expression; untestable - specify reason
231
+ TRESTFAC,B3,O,v1-2,"Tremor at rest - face, lips, chin"
232
+ TRESTFAX,B3,O,v2,"Tremor at rest - face, lips, chin; untestable - specify reason"
233
+ TRESTRHD,B3,O,v1-2,Tremor at rest - right hand
234
+ TRESTRHX,B3,O,v2,Tremor at rest - right hand; untestable - specify reason
235
+ TRESTLHD,B3,O,v1-2,Tremor at rest - left hand
236
+ TRESTLHX,B3,O,v2,Tremor at rest - left hand; untestable - specify reason
237
+ TRESTRFT,B3,O,v1-2,Tremor at rest - right foot
238
+ TRESTRFX,B3,O,v2,Tremor at rest - right foot; untestable - specify reason
239
+ TRESTLFT,B3,O,v1-2,Tremor at rest - left foot
240
+ TRESTLFX,B3,O,v2,Tremor at rest - left foot; untestable - specify reason
241
+ TRACTRHD,B3,O,v1-2,Action or postural tremor - right hand
242
+ TRACTRHX,B3,O,v2,Action or postural tremor - right hand; untestable - specify reason
243
+ TRACTLHD,B3,O,v1-2,Action or postural tremor - left hand
244
+ TRACTLHX,B3,O,v2,Action or postural tremor - left hand; untestable - specify reason
245
+ RIGDNECK,B3,O,v1-2,Rigidity - neck
246
+ RIGDNEX,B3,O,v2,Rigidity - neck; untestable - specify reason
247
+ RIGDUPRT,B3,O,v1-2,Rigidity - right upper extremity
248
+ RIGDUPRX,B3,O,v2,Rigidity - right upper extremity; untestable - specify reason
249
+ RIGDUPLF,B3,O,v1-2,Rigidity - left upper extremity
250
+ RIGDUPLX,B3,O,v2,Rigidity - left upper extremity; untestable - specify reason
251
+ RIGDLORT,B3,O,v1-2,Rigidity - right lower extremity
252
+ RIGDLORX,B3,O,v2,Rigidity - right lower extremity; untestable - specify reason
253
+ RIGDLOLF,B3,O,v1-2,Rigidity - left lower extremity
254
+ RIGDLOLX,B3,O,v2,Rigidity - left lower extremity; untestable - specify reason
255
+ TAPSRT,B3,O,v1-2,Finger taps - right hand
256
+ TAPSRTX,B3,O,v1-2,Finger taps - right hand; untestable - specify reason
257
+ TAPSLF,B3,O,v1-2,Finger taps - left hand
258
+ TAPSLFX,B3,O,v1-2,Finger taps - left hand; untestable - specify reason
259
+ HANDMOVR,B3,O,v1-2,Hand movements - right hand
260
+ HANDMVRX,B3,O,v1-2,Hand movements - right hand; untestable - specify reason
261
+ HANDMOVL,B3,O,v1-2,Hand movements - left hand
262
+ HANDMVLX,B3,O,v1-2,Hand movements - left hand; untestable - specify reason
263
+ HANDALTR,B3,O,v1-2,Alternating movement - right hand
264
+ HANDATRX,B3,O,v1-2,Alternating movement - right hand; untestable - specify reason
265
+ HANDALTL,B3,O,v1-2,Alternating movement - left hand
266
+ HANDATLX,B3,O,v1-2,Alternating movement - left hand; untestable - specify reason
267
+ LEGRT,B3,O,v1-2,Leg agility - right leg
268
+ LEGRTX,B3,O,v1-2,Leg agility - right leg; untestable - specify reason
269
+ LEGLF,B3,O,v1-2,Leg agility - left leg
270
+ LEGLFX,B3,O,v1-2,Leg agility - left leg; untestable - specify reason
271
+ ARISING,B3,O,v1-2,Arising from chair
272
+ ARISINGX,B3,O,v1-2,Arising from chair; untestable - specify reason
273
+ POSTURE,B3,O,v1-2,Posture
274
+ POSTUREX,B3,O,v1-2,Posture; untestable - specify reason
275
+ GAIT,B3,O,v1-2,Gait
276
+ GAITX,B3,O,v1-2,Gait; untestable - specify reason
277
+ POSSTAB,B3,O,v1-2,Posture stability
278
+ POSSTABX,B3,O,v1-2,Posture stability; untestable - specify reason
279
+ BRADYKIN,B3,O,v1-2,body bradykinesia and hypokinesia
280
+ BRADYKIX,B3,O,v2,body bradykinesia and hypokinesia; untestable - specify reason
281
+ MEMORY,B4,O,v1-3,Memory
282
+ ORIENT,B4,O,v1-3,Orientation
283
+ JUDGMENT,B4,O,v1-3,Judgment and problem-solving
284
+ COMMUN,B4,O,v1-3,Community affairs
285
+ HOMEHOBB,B4,O,v1-3,Home and hobbies
286
+ PERSCARE,B4,O,v1-3,Personal care
287
+ CDRSUM,B4,O,v1-3,CDR® sum of boxes
288
+ CDRGLOB,B4,O,v1-3,Global CDR®
289
+ COMPORT,B4,O,v2-3,"behavior, comportment, and personality"
290
+ CDRLANG,B4,O,v2-3,Language
291
+ NPIQINF,B5,O,v1-3,NPI-Q co-participant
292
+ NPIQINFX,B5,O,v1-3,"NPI-Q co-participant, other - specify"
293
+ DEL,B5,O,v1-3,Delusions in the last month
294
+ DELSEV,B5,O,v1-3,Delusions severity
295
+ HALL,B5,O,v1-3,Hallucinations in the last month
296
+ HALLSEV,B5,O,v1-3,Hallucinations severity
297
+ AGIT,B5,O,v1-3,Agitation or aggression in the last month
298
+ AGITSEV,B5,O,v1-3,Agitation or aggression severity
299
+ DEPD,B5,O,v1-3,Depression or dysphoria in the last month
300
+ DEPDSEV,B5,O,v1-3,Depression or dysphoria severity
301
+ ANX,B5,O,v1-3,Anxiety in the last month
302
+ ANXSEV,B5,O,v1-3,Anxiety severity
303
+ ELAT,B5,O,v1-3,Elation or euphoria in the last month
304
+ ELATSEV,B5,O,v1-3,Elation or euphoria severity
305
+ APA,B5,O,v1-3,Apathy or indifference in the last month
306
+ APASEV,B5,O,v1-3,Apathy or indifference severity
307
+ DISN,B5,O,v1-3,Disinhibition in the last month
308
+ DISNSEV,B5,O,v1-3,Disinhibition severity
309
+ IRR,B5,O,v1-3,Irritability or lability in the last month
310
+ IRRSEV,B5,O,v1-3,Irritability or lability severity
311
+ MOT,B5,O,v1-3,Motor disturbance in the last month
312
+ MOTSEV,B5,O,v1-3,Motor disturbance severity
313
+ NITE,B5,O,v1-3,Nighttime behaviors in the last month
314
+ NITESEV,B5,O,v1-3,Nighttime behaviors severity
315
+ APP,B5,O,v1-3,Appetite and eating problems in the last month
316
+ APPSEV,B5,O,v1-3,Appetite and eating severity
317
+ NOGDS,B6,O,v1-3,"Is the subject able to complete the GDS, based on the clinician's best judgment?"
318
+ SATIS,B6,O,v1-3,Are you basically satisfied with your life?
319
+ DROPACT,B6,O,v1-3,Have you dropped many of your activities and interests?
320
+ EMPTY,B6,O,v1-3,Do you feel that your life is empty?
321
+ BORED,B6,O,v1-3,Do you often get bored?
322
+ SPIRITS,B6,O,v1-3,Are you in good spirits most of the time?
323
+ AFRAID,B6,O,v1-3,Are you afraid that something bad is going to happen to you?
324
+ HAPPY,B6,O,v1-3,Do you feel happy most of the time?
325
+ HELPLESS,B6,O,v1-3,Do you often feel helpless?
326
+ STAYHOME,B6,O,v1-3,"Do you prefer to stay at home, rather than going out and doing new things?"
327
+ MEMPROB,B6,O,v1-3,Do you feel you have more problems with memory than most?
328
+ WONDRFUL,B6,O,v1-3,Do you think it is wonderful to be alive now?
329
+ WRTHLESS,B6,O,v1-3,Do you feel pretty worthless the way you are now?
330
+ ENERGY,B6,O,v1-3,Do you feel full of energy?
331
+ HOPELESS,B6,O,v1-3,Do you feel that your situation is hopeless?
332
+ BETTER,B6,O,v1-3,Do you think that most people are better off than you are?
333
+ NACCGDS,B6,D,v1-3,Total GDS Score
334
+ BILLS,B7,O,v1-3,"In the past four weeks, did the subject have any difficulty or need help with: Writing checks, paying bills, or balancing a checkbook"
335
+ TAXES,B7,O,v1-3,"In the past four weeks, did the subject have any difficulty or need help with: Assembling tax records, business affairs, or other paper"
336
+ SHOPPING,B7,O,v1-3,"In the past four weeks, did the subject have any difficulty or need help with: Shopping alone for clothes, household necessities, or groceries"
337
+ GAMES,B7,O,v1-3,"In the past four weeks, did the subject have any difficulty or need help with: Playing a game of skill such as bridge or chess, working on a hobby"
338
+ STOVE,B7,O,v1-3,"In the past four weeks, did the subject have any difficulty or need help with: Heating water, making a cup of coffee, turning off the stove"
339
+ MEALPREP,B7,O,v1-3,"In the past four weeks, did the subject have any difficulty or need help with: Preparing a balanced meal"
340
+ EVENTS,B7,O,v1-3,"In the past four weeks, did the subject have any difficulty or need help with: Keeping track of current events"
341
+ PAYATTN,B7,O,v1-3,"In the past four weeks, did the subject have any difficulty or need help with: Paying attention to and understanding a TV program, book, or magazine"
342
+ REMDATES,B7,O,v1-3,"In the past four weeks, did the subject have any difficulty or need help with: Remembering appointments, family occasions, idays, medications"
343
+ TRAVEL,B7,O,v1-3,"In the past four weeks, did the subject have any difficulty or need help with: Traveling out of the neighborhood, driving, or arranging to take public transportation"
344
+ NACCNREX,B8,D,v1-3,Were all findings unremarkable?
345
+ NORMEXAM,B8,O,v3,Were there abnormal neurological exam findings?
346
+ FOCLDEF,B8,O,v1-2,Are focal deficits present indicative of central nervous system disorder?
347
+ GAITDIS,B8,O,v1-2,Is gait disorder present indicative of central nervous system disorder?
348
+ EYEMOVE,B8,O,v1-2,Are there eye movement abnormalities present indicative of central nervous system disorder?
349
+ PARKSIGN,B8,O,v3,Parkinsonian signs
350
+ RESTTRL,B8,O,v3,Resting tremor - left arm
351
+ RESTTRR,B8,O,v3,Resting tremor - right arm
352
+ SLOWINGL,B8,O,v3,Slowing of fine motor movements - left side
353
+ SLOWINGR,B8,O,v3,Slowing of fine motor movements - right side
354
+ RIGIDL,B8,O,v3,Rigidity - left arm
355
+ RIGIDR,B8,O,v3,Rigidity - right arm
356
+ BRADY,B8,O,v3,bradykinesia
357
+ PARKGAIT,B8,O,v3,Parkinsonian gait disorder
358
+ POSTINST,B8,O,v3,Postural instability
359
+ CVDSIGNS,B8,O,v3,Neurological sign considered by examiner to be most likely consistent with cerebrovascular disease
360
+ CORTDEF,B8,O,v3,"Cortical cognitive deficit (e.g., aphasia, apraxia, neglect)"
361
+ SIVDFIND,B8,O,v3,Focal or other neurological findings consistent with SIVD (subcortical ischemic vascular dementia)
362
+ CVDMOTL,B8,O,v3,"Motor (may include weakness of combination of face, arm, and leg; reflex changes, etc.) - left side"
363
+ CVDMOTR,B8,O,v3,"Motor (may include weakness of combination of face, arm, and leg; reflex changes, etc.) - right side"
364
+ CORTVISL,B8,O,v3,Cortical visual field loss - left side
365
+ CORTVISR,B8,O,v3,Cortical visual field loss - right side
366
+ SOMATL,B8,O,v3,Somatosensory loss - left side
367
+ SOMATR,B8,O,v3,Somatosensory loss - right side
368
+ POSTCORT,B8,O,v3,"Higher cortical visual problem suggesting posterior cortical atrophy (e.g., prosopagnosia, simultagnosia, balint's syndrome) or apraxia of gaze"
369
+ PSPCBS,B8,O,v3,"Findings suggestive of progressive supranuclear palsy (PSP), corticobasal syndrome (CbS), or other related disorders"
370
+ EYEPSP,B8,O,v3,Eye movement changes consistent with PSP
371
+ DYSPSP,B8,O,v3,Dysarthria consistent with PSP
372
+ AXIALPSP,B8,O,v3,Axial rigidity consistent with PSP
373
+ GAITPSP,B8,O,v3,Gait disorder consistent with PSP
374
+ APRAXSP,B8,O,v3,Apraxia of speech
375
+ APRAXL,B8,O,v3,Apraxia consistent with CbS - left side
376
+ APRAXR,B8,O,v3,Apraxia consistent with CbS - right side
377
+ CORTSENL,B8,O,v3,Cortical sensory deficits consistent with CbS - left side
378
+ CORTSENR,B8,O,v3,Cortical sensory deficits consistent with CbS - right side
379
+ ATAXL,B8,O,v3,Ataxia consistent with CbS - left side
380
+ ATAXR,B8,O,v3,Ataxia consistent with CbS - right side
381
+ ALIENLML,B8,O,v3,Alien limb consistent with CbS - left side
382
+ ALIENLMR,B8,O,v3,Alien limb consistent with CbS - right side
383
+ DYSTONL,B8,O,v3,"Dystonia consistent with CbS, PSP, or related disorder - left side"
384
+ DYSTONR,B8,O,v3,"Dystonia consistent with CbS, PSP, or related disorder - right side"
385
+ MYOCLLT,B8,O,v3,Myoclonus consistent with CbS - left side
386
+ MYOCLRT,B8,O,v3,Myoclonus consistent with CbS - right side
387
+ ALSFIND,B8,O,v3,"Findings suggesting ALS (e.g., muscle wasting, fasciculations, upper motor and/or lower motor neuron signs)"
388
+ GAITNPH,B8,O,v3,Normal pressure hydrocephalus - gait apraxia
389
+ OTHNEUR,B8,O,v3,"Other findings (e.g., cerebella ataxia, chorea, myoclonus)"
390
+ OTHNEURX,B8,O,v3,Other findings (specify)
391
+ B9CHG,B9,O,v1,Indicate changes in information reported at previous visit
392
+ DECSUB,B9,O,v1-3,Does the subject report a decline in memory (relative to previously attained abilities)?
393
+ DECIN,B9,O,v1-3,Does the co-participant report a decline in subject's memory (relative to previously attained abilities)?
394
+ DECCLIN,B9,O,v1-2,"Clinician believes there is a meaningful decline in memory, non-memory cognitive abilities, behavior, ability to manage his/her affairs, or there are motor/movement changes"
395
+ DECCLCOG,B9,O,v3,"based on the clinician's judgment, is the subject currently experiencing meaningful impairment in cognition?"
396
+ COGMEM,B9,O,v1-3,"Indicate whether the subject currently is meaningfully impaired, relative to previously attained abilities, in memory"
397
+ COGORI,B9,O,v3,"Indicate whether the subject is meaningfully impaired, relative to previously attained abilities, in orientation"
398
+ COGJUDG,B9,O,v1-3,"Indicate whether the subject currently is meaningfully impaired, relative to previously attained abilities, in executive function - judgment, planning, or problem-solving"
399
+ COGLANG,B9,O,v1-3,"Indicate whether the subject currently is meaningfully impaired, relative to previously attained abilities, in language"
400
+ COGVIS,B9,O,v1-3,"Indicate whether the subject currently is meaningfully impaired, relative to previously attained abilities, in visuospatial function"
401
+ COGATTN,B9,O,v1-3,"Indicate whether the subject currently is meaningfully impaired, relative to previously attained abilities, in attention or concentration"
402
+ COGFLUC,B9,O,v2-3,Indicate whether the subject currently has fluctuating cognition
403
+ COGFLAGO,B9,O,v3,At what age did the fluctuating cognition begin?
404
+ COGOTHR,B9,O,v1-3,"Indicate whether the subject currently is meaningfully impaired, relative to previously attained abilities, in other cognitive domains"
405
+ COGOTHRX,B9,O,v1-3,Specification of other cognitive impairment
406
+ NACCCOGF,B9,D,v1-3,Indicate the predominant symptom that was first recognized as a decline in the subject's cognition
407
+ NACCCGFX,B9,D,v1-3,Specification for other predominant symptom first recognized as a decline in the subject's cognition
408
+ COGMODE,B9,O,v1-3,Mode of onset of cognitive symptoms
409
+ COGMODEX,B9,O,v1-3,Specification for other mode of onset of cognitive symptoms
410
+ DECAGE,B9,O,v1-3,"based on clinician's assessment, at what age did the cognitive decline begin?"
411
+ DECCLBE,B9,O,v3,"based on clinician's judgment, is the subject currently experiencing any kind of behavioral symptoms?"
412
+ BEAPATHY,B9,O,v1-3,"Subject currently manifests meaningful change in behavior - Apathy, withdrawal"
413
+ BEDEP,B9,O,v1-3,Subject currently manifests meaningful change in behavior - Depressed mood
414
+ BEVHALL,B9,O,v1-3,Subject currently manifests meaningful change in behavior - Psychosis - Visual hallucinations
415
+ BEVWELL,B9,O,v2-3,"If yes, are the hallucinations well-formed and detailed?"
416
+ BEVHAGO,B9,O,v3,"If well-formed, clear-cut visual hallucinations, at what age did these hallucinations begin?"
417
+ BEAHALL,B9,O,v1-3,Subject currently manifests meaningful change in behavior - Psychosis - Auditory hallucinations
418
+ BEDEL,B9,O,v1-3,"Subject currently manifests meaningful change in behavior - Psychosis - Abnormal, false, or delusional beliefs"
419
+ BEDISIN,B9,O,v1-3,Subject currently manifests meaningful change in behavior - Disinhibition
420
+ BEIRRIT,B9,O,v1-3,Subject currently manifests meaningful change in behavior - Irritability
421
+ BEAGIT,B9,O,v1-3,Subject currently manifests meaningful change in behavior - Agitation
422
+ BEPERCH,B9,O,v1-3,Subject currently manifests meaningful change in behavior - Personality change
423
+ BEREM,B9,O,v2-3,Subject currently manifests meaningful change in behavior - REM sleep behavior disorder
424
+ BEREMAGO,B9,O,v3,"If yes, at what age did the REM sleep behavior disorder begin?"
425
+ BEANX,B9,O,v3,Subject currently manifests meaningful change in behavior - Anxiety
426
+ BEOTHR,B9,O,v1-3,Subject currently manifests meaningful change in behavior - Other
427
+ BEOTHRX,B9,O,v1-3,"Subject currently manifests meaningful change in behavior - Other, specify"
428
+ NACCBEHF,B9,D,v1-3,Indicate the predominant symptom that was first recognized as a decline in the subject's behavior
429
+ NACCBEFX,B9,D,v1-3,Specification of other predominant symptom that was first recognized as a decline in the subject's behavior
430
+ BEMODE,B9,O,v1-3,Mode of onset of behavioral symptoms
431
+ BEMODEX,B9,O,v1-3,Specification of other mode of onset of behavioral symptoms
432
+ BEAGE,B9,O,v3,"based on the clinician's assessment, at what age did the behavioral symptoms begin?"
433
+ DECCLMOT,B9,O,v3,"based on the clinician's judgment, is the subject currently experiencing any motor symptoms?"
434
+ MOGAIT,B9,O,v1-3,Indicate whether the subject currently has meaningful changes in motor function - Gait disorder
435
+ MOFALLS,B9,O,v1-3,Indicate whether the subject currently has meaningful changes in motor function - Falls
436
+ MOTREM,B9,O,v1-3,Indicate whether the subject currently has meaningful changes in motor function - Tremor
437
+ MOSLOW,B9,O,v1-3,Indicate whether the subject currently has meaningful changes in motor function - Slowness
438
+ NACCMOTF,B9,D,v1-3,Indicate the predominant symptom that was first recognized as a decline in the subject's motor function
439
+ MOMODE,B9,O,v1-3,Mode of onset of motor symptoms
440
+ MOMODEX,B9,O,v1-3,Specification for other mode of onset of motor symptoms
441
+ MOMOPARK,B9,O,v2-3,Were changes in motor function suggestive of Parkinsonism?
442
+ PARKAGE,B9,O,v3,"If yes, at what age did the motor symptoms suggestive of Parkinsonism begin?"
443
+ MOMOALS,B9,O,v3,Were changes in motor function suggestive of amyotrophic lateral sclerosis?
444
+ ALSAGE,B9,O,v3,"If yes, at what age did the motor symptoms suggestive of ALS begin?"
445
+ MOAGE,B9,O,v3,"based on the clinician's assessment, at what age did the motor changes begin?"
446
+ COURSE,B9,O,v1-3,Overall course of decline of cognitive/ behavioral/motor syndrome
447
+ FRSTCHG,B9,O,v1-3,Indicate the predominant domain that was first recognized as changed in the subject
448
+ LBDEVAL,B9,O,v3,Is the subject a potential candidate for further evaluation for Lewy body disease?
449
+ FTLDEVAL,B9,O,v3,Is the subject a potential candidate for further evaluation for frontotemporal lobar degeneration?
450
+ MMSECOMP,C1,O,v3,Was any part of the MMSE completed?
451
+ MMSELOC,C1,O,v1-3,Administration of the MMSE was:
452
+ MMSELAN,C1,O,v1-3,Language of MMSE administration
453
+ MMSELANX,C1,O,v1-3,Language of MMSE administration - Other (specify)
454
+ MMSEVIS,C1,O,v3,Subject was unable to complete one or more sections due to visual impairment
455
+ MMSEHEAR,C1,O,v3,Subject was unable to complete one or more sections due to hearing impairment
456
+ MMSEORDA,C1,O,v1-3,Orientation subscale score - Time
457
+ MMSEORLO,C1,O,v1-3,Orientation subscale score - Place
458
+ PENTAGON,C1,O,v2-3,Intersecting pentagon subscale score
459
+ NACCMMSE,C1,D,v1-3,Total MMSE score (using D-L-R-O-W)
460
+ NPSYCLOC,"C1, C2",O,v1-3,The remainder of the battery was administered:
461
+ NPSYLAN,"C1, C2, C2T",O,v1-3,Language of test administration
462
+ NPSYLANX,"C1, C2, C2T",O,v1-3,Language of test administration - Other (specify)
463
+ LOGIMO,C1,O,v1-3,"If this test has been administered to the subject within the past 3 months, specify the date previously administered (month)"
464
+ LOGIDAY,C1,O,v1-3,"If this test has been administered to the subject within the past 3 months, specify the date previously administered (day)"
465
+ LOGIYR,C1,O,v1-3,"If this test has been administered to the subject within the past 3 months, specify the date previously administered (year)"
466
+ LOGIPREV,C1,O,v1-3,Total score from the previous test administration
467
+ LOGIMEM,C1,O,v1-3,Total number of story units recalled from this current test administration
468
+ MEMUNITS,C1,O,v1-3,Logical Memory IIA - Delayed - Total number of story units recalled
469
+ MEMTIME,C1,O,v1-3,Logical Memory IIA - Delayed - Time elapsed since Logical Memory IA - Immediate
470
+ UDSBENTC,"C1, C2",O,v3,Total score for copy of benson figure
471
+ UDSBENTD,"C1, C2",O,v3,Total score for 10- to 15-minute delayed drawing of benson figure
472
+ UDSBENRS,"C1,C2",O,v3,Recognized original stimulus from among four options
473
+ DIGIF,C1,O,v1-3,Digit span forward trials correct
474
+ DIGIFLEN,C1,O,v1-3,Digit span forward length
475
+ DIGIB,C1,O,v1-3,Digit span backward trials correct
476
+ DIGIBLEN,C1,O,v1-3,Digit span backward length
477
+ ANIMALS,"C1, C2, C2T",O,v1-3,Animals - Total number of animals named in 60 seconds
478
+ VEG,"C1, C2, C2T",O,v1-3,Vegetable - Total number of vegetables named in 60 seconds
479
+ TRAILA,"C1, C2",O,v1-3,Trail Making Test Part A - Total number of seconds to complete
480
+ TRAILARR,"C1, C2",O,v2-3,Part A - Number of commission errors
481
+ TRAILALI,"C1, C2",O,v2-3,Part A - Number of correct lines
482
+ TRAILB,"C1, C2",O,v1-3,Trail Making Test Part b - Total number of seconds to complete
483
+ TRAILBRR,"C1, C2",O,v2-3,Part b - Number of commission errors
484
+ TRAILBLI,"C1, C2",O,v2-3,Part b - Number of correct lines
485
+ WAIS,C1,O,v1-2,WAIS-R Digit Symbol
486
+ BOSTON,C1,O,v1-3,boston Naming Test (30) - Total score
487
+ UDSVERFC,"C1, C2, C2T",O,v3,Number of correct F-words generated in 1 minute
488
+ UDSVERFN,"C1, C2, C2T",O,v3,Number of F-words repeated in 1 minute
489
+ UDSVERNF,"C1, C2, C2T",O,v3,Number of non-F-words and rule violation errors in 1 minute
490
+ UDSVERLC,"C1, C2, C2T",O,v3,Number of correct L-words generated in 1 minute
491
+ UDSVERLR,"C1, C2, C2T",O,v3,Number of L-words repeated in 1 minute
492
+ UDSVERLN,"C1, C2, C2T",O,v3,Number of non-L-words and rule violation errors in 1 minute
493
+ UDSVERTN,"C1, C2, C2T",O,v3,Total number of correct F-words and L-words
494
+ UDSVERTE,"C1, C2, C2T",O,v3,Total number of F-word and L-word repetition errors
495
+ UDSVERTI,"C1, C2, C2T",O,v3,Total number of non-F/L-words and rule violation errors
496
+ COGSTAT,"C1, C2, C2T",O,v1-3,"Per clinician, based on the neuropsychological examination, the subject's cognitive status is deemed"
497
+ NACCC1,C1,D,v1-3,Form date discrepancy between UDS Form A1 and Form C1
498
+ MOCACOMP,"C2, C2T",O,v3,Was any part of MoCA administered?
499
+ MOCAREAS,"C2, C2T",O,v3,"If no part of MoCA administered, reason code"
500
+ MOCALOC,C2,O,v3,Where was MoCA administered?
501
+ MOCALAN,"C2, C2T",O,v3,Language of MoCA administration
502
+ MOCALANX,"C2, C2T",O,v3,"Language of MoCA administration - Other, specify"
503
+ MOCAVIS,C2,O,v3,Subject was unable to complete one or more sections due to visual impairment
504
+ MOCAHEAR,"C2, C2T",O,v3,Subject was unable to complete one or more sections due to hearing impairment
505
+ MOCATOTS,C2,O,v3,MoCA Total Raw Score - uncorrected
506
+ NACCMOCA,C2,D,v3,MoCA Total Score - corrected for education
507
+ MOCATRAI,C2,O,v3,MoCA: Visuospatial/executive - Trails
508
+ MOCACUBE,C2,O,v3,MoCA: Visuospatial/executive - Cube
509
+ MOCACLOC,C2,O,v3,MoCA: Visuospatial/executive - Clock contour
510
+ MOCACLON,C2,O,v3,MoCA: Visuospatial/executive - Clock numbers
511
+ MOCACLOH,C2,O,v3,MoCA: Visuospatial/executive - Clock hands
512
+ MOCANAMI,C2,O,v3,MoCA: Language - Naming
513
+ MOCAREGI,C2,O,v3,MoCA: Memory - Registration (two trials)
514
+ MOCADIGI,"C2, C2T",O,v3,MoCA: Attention - Digits
515
+ MOCALETT,"C2, C2T",O,v3,MoCA: Attention - Letter A
516
+ MOCASER7,"C2, C2T",O,v3,MoCA: Attention - Serial 7s
517
+ MOCAREPE,"C2, C2T",O,v3,MoCA: Language - Repetition
518
+ MOCAFLUE,"C2, C2T",O,v3,MoCA: Language - Fluency
519
+ MOCAABST,"C2, C2T",O,v3,MoCA: Abstraction
520
+ MOCARECN,"C2, C2T",O,v3,MoCA: Delayed recall - No cue
521
+ MOCARECC,"C2, C2T",O,v3,MoCA: Delayed recall - Category cue
522
+ MOCARECR,"C2, C2T",O,v3,MoCA: Delayed recall - Recognition
523
+ MOCAORDT,"C2, C2T",O,v3,MoCA: Orientation - Date
524
+ MOCAORMO,"C2, C2T",O,v3,MoCA: Orientation - Month
525
+ MOCAORYR,"C2, C2T",O,v3,MoCA: Orientation - Year
526
+ MOCAORDY,"C2, C2T",O,v3,MoCA: Orientation - Day
527
+ MOCAORPL,"C2, C2T",O,v3,MoCA: Orientation - Place
528
+ MOCAORCT,"C2, C2T",O,v3,MoCA: Orientation - City
529
+ CRAFTVRS,"C2, C2T",O,v3,"Craft Story 21 Recall (Immediate) - Total story units recalled, verbatim scoring"
530
+ CRAFTURS,"C2, C2T",O,v3,"Craft Story 21 Recall (Immediate) - Total story units recalled, paraphrase scoring"
531
+ DIGFORCT,"C2, C2T",O,v3,Number Span Test: Forward - Number of correct trials
532
+ DIGFORSL,"C2, C2T",O,v3,Number Span Test: Forward - Longest span forward
533
+ DIGBACCT,"C2, C2T",O,v3,Number Span Test: backward - Number of correct trials
534
+ DIGBACLS,"C2, C2T",O,v3,Number Span Test: backward - Longest span backward
535
+ CRAFTDVR,"C2, C2T",O,v3,"Craft Story 21 Recall (Delayed) - Total story units recalled, verbatim scoring"
536
+ CRAFTDRE,"C2, C2T",O,v3,"Craft Story 21 Recall (Delayed) - Total story units recalled, paraphrase scoring"
537
+ CRAFTDTI,"C2, C2T",O,v3,Craft Story 21 Recall (Delayed) - Delay time
538
+ CRAFTCUE,"C2, C2T",O,v3,Craft Story 21 Recall (Delayed) - Cue (boy) needed
539
+ MINTTOTS,C2,O,v3,Multilingual Naming Test (MINT) - Total score
540
+ MINTTOTW,C2,O,v3,Multilingual Naming Test (MINT) - Total correct without semantic cue
541
+ MINTSCNG,C2,O,v3,Multilingual Naming Test (MINT) - Semantic cues: Number given
542
+ MINTSCNC,C2,O,v3,Multilingual Naming Test (MINT) - Semantic cues: Number correct with cue
543
+ MINTPCNG,C2,O,v3,Multilingual Naming Test (MINT) - Phonemic cues: Number given
544
+ MINTPCNC,C2,O,v3,Multilingual Naming Test (MINT) - Phonemic cues: Number correct with cue
545
+ NACCC2,C2,D,v3,Form date discrepancy between UDS Form A1 and Form C2
546
+ MODCOMM,C2T,O,v3,Modality of communication used to administer neuropsychological battery
547
+ MOCBTOTS,C2T,O,v3,MoCA blind Total raw score - uncorrected
548
+ NACCMOCB,C2T,D,v3,MoCA-blind Total Score - corrected for education
549
+ REY1REC,C2T,O,v3,Rey Auditory Verbal Learning: Trial 1 total recall
550
+ REY1INT,C2T,O,v3,Rey Auditory Verbal Learning: Trial 1 intrusions
551
+ REY2REC,C2T,O,v3,Rey Auditory Verbal Learning: Trial 2 total recall
552
+ REY2INT,C2T,O,v3,Rey Auditory Verbal Learning: Trial 2 intrusions
553
+ REY3REC,C2T,O,v3,Rey Auditory Verbal Learning: Trial 3 total recall
554
+ REY3INT,C2T,O,v3,Rey Auditory Verbal Learning: Trial 3 intrusions
555
+ REY4REC,C2T,O,v3,Rey Auditory Verbal Learning: Trial 4 total recall
556
+ REY4INT,C2T,O,v3,Rey Auditory Verbal Learning: Trial 4 intrusions
557
+ REY5REC,C2T,O,v3,Rey Auditory Verbal Learning: Trial 5 total recall
558
+ REY5INT,C2T,O,v3,Rey Auditory Verbal Learning: Trial 5 intrusions
559
+ REY6REC,C2T,O,v3,Rey Auditory Verbal Learning: Trial 6 total recall
560
+ REY6INT,C2T,O,v3,Rey Auditory Verbal Learning: Trial 6 intrusions
561
+ OTRAILA,C2T,O,v3,Oral Trail Making Test - Part A: Total number of seconds to complete
562
+ OTRLARR,C2T,O,v3,Oral Trail Making Test - Part A: Number of commission errors
563
+ OTRLALI,C2T,O,v3,Oral Trail Making Test - Part A: Number of correct lines
564
+ OTRAILB,C2T,O,v3,Oral Trail Making Test Part b: Total number of seconds to complete
565
+ OTRLBRR,C2T,O,v3,Oral Trail Making Test Part b: Number of commission errors
566
+ OTRLBLI,C2T,O,v3,Oral Trail Making Test Part b: Number of correct lines
567
+ REYDREC,C2T,O,v3,Rey Auditory Verbal Learning: total delayed recall
568
+ REYDINT,C2T,O,v3,Rey Auditory Verbal Learning: delayed intrusions
569
+ REYTCOR,C2T,O,v3,Rey Auditory Verbal Learning: recognition total correct
570
+ REYFPOS,C2T,O,v3,Rey Auditory Verbal Learning: recognition total false positives
571
+ VNTTOTW,C2T,O,v3,Verbal naming test: total correct without a cue
572
+ VNTPCNC,C2T,O,v3,Verbal naming test: total correct with a phonemic cue
573
+ RESPVAL,C2T,O,v3,How valid do you think the participant's responses are?
574
+ RESPHEAR,C2T,O,v3,What makes this participant's responses less valid? Hearing impairment
575
+ RESPDIST,C2T,O,v3,What makes this participant's responses less valid? Distractions
576
+ RESPINTR,C2T,O,v3,What makes this participant's responses less valid? Interruptions
577
+ RESPDISN,C2T,O,v3,What makes this participant's responses less valid? Lack of effort or disinterest
578
+ RESPFATG,C2T,O,v3,What makes this participant's responses less valid? Fatigue
579
+ RESPEMOT,C2T,O,v3,What makes this participant's responses less valid? Emotional issues
580
+ RESPASST,C2T,O,v3,What makes this participant's responses less valid? Unapproved assistance
581
+ RESPOTH,C2T,O,v3,What makes this participant's responses less valid? Other
582
+ RESPOTHX,C2T,O,v3,What makes this participant's responses less valid? Other (specify)
583
+ WHODIDDX,D1,O,v1-2,Who did diagnosis
584
+ DXMETHOD,D1,O,v3,Diagnosis method
585
+ NORMCOG,D1,O,v1-3,Normal cognition and behavior
586
+ DEMENTED,D1,O,v1-3,Met criteria for dementia
587
+ NACCUDSD,D1,D,v1-3,Cognitive status at UDS visit
588
+ AMNDEM,D1,O,v3,Dementia syndrome - Amnestic multidomain dementia syndrome
589
+ PCA,D1,O,v3,Dementia syndrome - Posterior cortical atrophy syndrome (or primary visual presentation)
590
+ NACCPPA,D1,D,v1-3,Primary progressive aphasia (PPA) with cognitive impairment
591
+ NACCPPAG,D1,D,v3,Dementia syndrome - Primary progressive aphasia (PPA) subtype according to the criteria outlined by Gorno-Tempini et al. 2011
592
+ NACCPPME,D1,D,v1-2,Primary progressive aphasia (PPA) subtype according to older criteria outlined by Mesulam et al (2001 and 2003)
593
+ NACCBVFT,D1,D,v1-3,Dementia syndrome - behavioral variant FTD syndrome (bvFTD)
594
+ NACCLBDS,D1,D,v1-3,Dementia syndrome - Lewy body dementia syndrome
595
+ NAMNDEM,D1,O,v3,"Dementia syndrome - Non-amnestic multidomain dementia, not PCA, PPA, bvFTD, or DLb syndrome"
596
+ NACCTMCI,D1,D,v1-3,Mild cognitive impairment (MCI) type
597
+ NACCMCIL,D1,D,v1-3,MCI domain affected - language
598
+ NACCMCIA,D1,D,v1-3,MCI domain affected - attention
599
+ NACCMCIE,D1,D,v1-3,MCI domain affected - executive function
600
+ NACCMCIV,D1,D,v1-3,MCI domain affected - visuospatial
601
+ IMPNOMCI,D1,O,v1-3,"Cognitively impaired, not MCI"
602
+ AMYLPET,D1,O,v3,Abnormally elevated amyloid on PET
603
+ AMYLCSF,D1,O,v3,Abnormally low amyloid in CSF
604
+ FDGAD,D1,O,v3,FDG-PET pattern of AD
605
+ HIPPATR,D1,O,v3,Hippocampal atrophy
606
+ TAUPETAD,D1,O,v3,Tau PET evidence for AD
607
+ CSFTAU,D1,O,v3,Abnormally elevated CSF Tau or pTau
608
+ FDGFTLD,D1,O,v3,FDG-PET evidence for frontal or anterior temporal hypometabolism for FTLD
609
+ TPETFTLD,D1,O,v3,Tau PET evidence for FTLD
610
+ MRFTLD,D1,O,v3,Structural MR evidence for frontal or anterior temporal atrophy for FTLD
611
+ DATSCAN,D1,O,v3,Dopamine transporter scan (DATscan) evidence for Lewy body disease
612
+ OTHBIOM,D1,O,v3,biomarker findings - Other
613
+ OTHBIOMX,D1,O,v3,biomarker findings - Other (specify)
614
+ IMAGLINF,D1,O,v3,Large vessel infarct(s)
615
+ IMAGLAC,D1,O,v3,Lacunar infarct(s)
616
+ IMAGMACH,D1,O,v3,Macrohemorrhage(s)
617
+ IMAGMICH,D1,O,v3,Microhemorrhage(s)
618
+ IMAGMWMH,D1,O,v3,Moderate white-matter hyperintensity (CHS score 5-6)
619
+ IMAGEWMH,D1,O,v3,Extensive white-matter hyperintensity (CHS score 7-8)
620
+ OTHMUT,D1,O,v3,Does the subject have a hereditary mutation other than an AD or FTLD mutation?
621
+ OTHMUTX,D1,O,v3,"Other mutation, specify"
622
+ NACCALZD,D1,D,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Alzheimer's disease
623
+ NACCALZP,D1,D,v1-3,"Primary, contributing, or non-contributing cause of observed cognitive impairment - Alzheimer's disease (AD)"
624
+ PROBAD,D1,O,v1-2,Presumptive etiologic diagnosis of the cognitive disorder - Probable Alzheimer's disease
625
+ PROBADIF,D1,O,v1-2,"Primary, contributing, or non-contributing cause of cognitive impairment - Probable Alzheimer's disease"
626
+ POSSAD,D1,O,v1-2,Presumptive etiologic diagnosis of the cognitive disorder - Possible Alzheimer's disease
627
+ POSSADIF,D1,O,v1-2,"Primary, contributing, or non-contributing cause of cognitive impairment - Possible Alzheimer's disease"
628
+ NACCLBDE,D1,D,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Lewy body disease
629
+ NACCLBDP,D1,D,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Lewy body disease (LbD)"
630
+ PARK,D1,O,v1-3,Parkinson's disease present
631
+ MSA,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Multiple system atrophy (MSA)
632
+ MSAIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - Multiple system atrophy (MSA)"
633
+ PSP,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - primary supranuclear palsy (PSP)
634
+ PSPIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Primary supranuclear palsy (PSP)"
635
+ CORT,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Corticobasal degeneration (CbD)
636
+ CORTIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Corticobasal degeneration (CbD)"
637
+ FTLDMO,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - FTLD with motor neuron disease (MND)
638
+ FTLDMOIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - FTLD with motor neuron disease (MND)"
639
+ FTLDNOS,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - FTLD not otherwise specified (NOS)
640
+ FTLDNOIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - FTLD not otherwise specified (NOS)"
641
+ FTD,D1,O,v1-2,Presence of behavioral frontotemporal dementia (bvFTD)
642
+ FTDIF,D1,O,v1-2,"Primary, contributing, or non-contributing cause of cognitive impairment - behavioral frontotemporal dementia (bvFTD)"
643
+ PPAPH,D1,O,v1-2,Presumptive etiologic diagnosis of the cognitive disorder - Primary progressive aphasia (PPA)
644
+ PPAPHIF,D1,O,v1-2,"Primary, contributing, or non-contributing cause of cognitive impairment - primary progressive aphasia (PPA)"
645
+ FTLDSUBT,D1,O,v3,FTLD subtype
646
+ FTLDSUBX,D1,O,v3,"Other FTLD subtype, specify"
647
+ CVD,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Vascular brain injury (VbI)
648
+ CVDIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - vascular brain injury"
649
+ PREVSTK,D1,O,v3,Previous symptomatic stroke
650
+ STROKDEC,D1,O,v3,Temporal relationship between stroke and cognitive decline
651
+ STKIMAG,D1,O,v3,Confirmation of stroke by neuroimaging
652
+ INFNETW,D1,O,v3,Imaging evidence of cystic infarction in cognitive network(s)
653
+ INFWMH,D1,O,v3,"Imaging evidence of cystic infarction, imaging evidence of extensive white matter hyperintensity (CHS grade 7-8+), and impairment in executive function"
654
+ VASC,D1,O,v1-2,Presumptive etiologic diagnosis of the cognitive disorder - Probable vascular dementia (NINDS/AIREN criteria)
655
+ VASCIF,D1,O,v1-2,"Primary, contributing, or non-contributing cause of cognitive impairment - Probable vascular dementia (NINDS/AIREN criteria)"
656
+ VASCPS,D1,O,v2,Presumptive etiologic diagnosis of the cognitive disorder - Possible vascular dementia (NINDS/AIREN criteria)
657
+ VASCPSIF,D1,O,v2,"Primary, contributing, or non-contributing cause of cognitive impairment - possible vascular dementia (NINDS/AIREN criteria)"
658
+ STROKE,D1,O,v1-2,Presumptive etiologic diagnosis of the cognitive disorder - Stroke
659
+ STROKIF,D1,O,v1-2,"Primary, contributing, or non-contributing cause of cognitive impairment - stroke"
660
+ ESSTREM,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Essential tremor
661
+ ESSTREIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - Essential tremor"
662
+ DOWNS,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Down syndrome
663
+ DOWNSIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Down syndrome"
664
+ HUNT,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Huntington's disease
665
+ HUNTIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Huntington's disease"
666
+ PRION,D1,O,v1-3,"Presumptive etiologic diagnosis of the cognitive disorder - Prion disease (CJD, other)"
667
+ PRIONIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Prion disease (CJD, other)"
668
+ BRNINJ,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Traumatic brain injury (TbI)
669
+ BRNINJIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Traumatic brain injury (TbI)"
670
+ BRNINCTE,D1,O,v3,Symptoms consistent with chronic traumatic encephalopathy (CTE)
671
+ HYCEPH,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Normal-pressure hydrocephalus (NPH)
672
+ HYCEPHIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Normal-pressure hydrocephalus (NPH)"
673
+ EPILEP,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Epilepsy
674
+ EPILEPIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - Epilepsy"
675
+ NEOP,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - CNS neoplasm
676
+ NEOPIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - CNS neoplasm"
677
+ NEOPSTAT,D1,O,v3,CNS neoplasm - benign or malignant
678
+ HIV,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Human immunodeficiency virus (HIV)
679
+ HIVIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - HIV"
680
+ OTHCOG,D1,O,v3,"Presumptive etiologic diagnosis of the cognitive disorder - Other neurological, genetic, or infectious condition"
681
+ OTHCOGIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - Other neurological, genetic, or infectious condition"
682
+ OTHCOGX,D1,O,v3,"Presumptive etiologic diagnosis of the cognitive disorder - Other neurological, genetic, or infectious conditions (specify)"
683
+ DEP,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Depression
684
+ DEPIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Depression"
685
+ DEPTREAT,D1,O,v3,Depression - Treated or untreated
686
+ BIPOLDX,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - bipolar disorder
687
+ BIPOLDIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - bipolar disorder"
688
+ SCHIZOP,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Schizophrenia or other psychosis
689
+ SCHIZOIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - Schizophrenia or other psychosis"
690
+ ANXIET,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Anxiety
691
+ ANXIETIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - Anxiety"
692
+ DELIR,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Delirium
693
+ DELIRIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - Delirium"
694
+ PTSDDX,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Post-traumatic stress disorder (PTSD)
695
+ PTSDDXIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - PTSD"
696
+ OTHPSY,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Other psychiatric disease
697
+ OTHPSYIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Other psychiatric disease"
698
+ OTHPSYX,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Other psychiatric disease (specify)
699
+ ALCDEM,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Cognitive impairment due to alcohol abuse
700
+ ALCDEMIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Alcohol abuse"
701
+ ALCABUSE,D1,O,v3,Current alcohol abuse
702
+ IMPSUB,D1,O,v3,Presumptive etiologic diagnosis of the cognitive disorder - Cognitive impairment due to other substance abuse
703
+ IMPSUBIF,D1,O,v3,"Primary, contributing, or non-contributing cause of cognitive impairment - Other substance abuse"
704
+ DYSILL,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Cognitive impairment due to systemic disease/ medical illness
705
+ DYSILLIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - systemic disease/ medical illness"
706
+ MEDS,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Cognitive impairment due to medications
707
+ MEDSIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - medications"
708
+ DEMUN,D1,O,v1-2,Presumptive etiologic diagnosis of the cognitive disorder - Undetermined etiology
709
+ DEMUNIF,D1,O,v1-2,"Primary, contributing, or non-contributing cause of cognitive impairment - Undetermined etiology"
710
+ COGOTH,D1,O,v1-3,Presumptive etiologic diagnosis of the cognitive disorder - Other 1 (specify)
711
+ COGOTHIF,D1,O,v1-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Other1 (specify)"
712
+ COGOTHX,D1,O,v1-3,"Other presumptive etiologic diagnosis of the cognitive disorder 1, specify"
713
+ COGOTH2,D1,O,v2-3,Presumptive etiologic diagnosis of the cognitive disorder - Other 2 (specify)
714
+ COGOTH2F,D1,O,v2-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Other 2 (specify)"
715
+ COGOTH2X,D1,O,v2-3,"Other presumptive etiologic diagnosis of the cognitive disorder 2, specify"
716
+ COGOTH3,D1,O,v2-3,Presumptive etiologic diagnosis of the cognitive disorder - Other 3 (specify)
717
+ COGOTH3F,D1,O,v2-3,"Primary, contributing, or non-contributing cause of cognitive impairment - Other 3 (specify)"
718
+ COGOTH3X,D1,O,v2-3,"Other presumptive etiologic diagnosis of the cognitive disorder 3, specify"
719
+ NACCNORM,D1,D,v1-3,Normal cognition at all visits to date
720
+ NACCIDEM,D1,D,v1-3,Incident dementia during UDS follow-up
721
+ NACCMCII,D1,D,v1-3,Incident MCI during UDS follow-up
722
+ NACCADMU,D1,D,v3,Does the subject have a dominantly inherited AD mutation?
723
+ NACCFTDM,D1,D,v3,Does the subject have an hereditary FTLD mutation?
724
+ NACCETPR,D1,D,v1-3,"Primary etiologic diagnosis (MCI); impaired, not MCI; or dementia"
725
+ CANCER,D2,O,v3,"Cancer present in the last 12 months (excluding non-melanoma skin cancer), primary or metastatic"
726
+ CANCSITE,D2,O,v3,Cancer primary site specification
727
+ DIABET,D2,O,v3,Diabetes present at visit
728
+ MYOINF,D2,O,v3,Myocardial infarct present within the past 12 months
729
+ CONGHRT,D2,O,v3,Congestive heart failure present
730
+ AFIBRILL,D2,O,v3,Atrial fibrillation present
731
+ HYPERT,D2,O,v3,Hypertension present
732
+ ANGINA,D2,O,v3,Angina present
733
+ HYPCHOL,D2,O,v3,Hypercholesterolemia present
734
+ VB12DEF,D2,O,v3,b12 deficiency present
735
+ THYDIS,D2,O,v3,Thyroid disease present
736
+ ARTH,D2,O,v3,Arthritis present
737
+ ARTYPE,D2,O,v3,Arthritis type
738
+ ARTYPEX,D2,O,v3,Other arthritis type specification
739
+ ARTUPEX,D2,O,v3,Arthritis region affected - upper extremity
740
+ ARTLOEX,D2,O,v3,Arthritis region affected - lower extremity
741
+ ARTSPIN,D2,O,v3,Arthritis region affected - spine
742
+ ARTUNKN,D2,O,v3,Arthritis region affected - unknown
743
+ URINEINC,D2,O,v3,Incontinence present - urinary
744
+ BOWLINC,D2,O,v3,Incontinence present - bowel
745
+ SLEEPAP,D2,O,v3,Sleep apnea present
746
+ REMDIS,D2,O,v3,REM sleep behavior disorder (RbD) present
747
+ HYPOSOM,D2,O,v3,Hyposomnia/insomnia present
748
+ SLEEPOTH,D2,O,v3,Other sleep disorder present
749
+ SLEEPOTX,D2,O,v3,Other sleep disorder specification
750
+ ANGIOCP,D2,O,v3,"Carotid procedure: angioplasty, endarterectomy, or stent within the past 12 months"
751
+ ANGIOPCI,D2,O,v3,Percutaneous coronary intervention: angioplasty and/or stent within the past 12 months
752
+ PACEMAKE,D2,O,v3,Procedure: pacemaker and/or defibrillator within the past 12 months
753
+ HVALVE,D2,O,v3,Procedure: heart valve replacement or repair within the past 12 months
754
+ ANTIENC,D2,O,v3,Antibody-mediated encephalopathy within the past 12 months
755
+ ANTIENCX,D2,O,v3,"Antibody-mediated encephalopathy, specify"
756
+ OTHCOND,D2,O,v3,Other medical conditions or procedures within the past 12 months not listed above
757
+ OTHCONDX,D2,O,v3,Other medical conditions specification
758
+ LANGA1,Z1X,O,v3,A1 Subject Demographics - language
759
+ LANGA2,Z1X,O,v3,A2 Co-participant Demographics - language
760
+ LANGA3,Z1X,O,v3,A3 Subject Family History - language
761
+ LANGA4,Z1X,O,v3,A4 Subject Medications - language
762
+ LANGA5,Z1X,O,v3,A5 Subject Health History - language
763
+ LANGB1,Z1X,O,v3,B1 Evaluation Form: Physical - language
764
+ LANGB4,Z1X,O,v3,B4 Global Staging - CDR: Standard and Supplemental - language
765
+ LANGB5,Z1X,O,v3,B5 behavioral Assessment: NPI-Q - language
766
+ LANGB6,Z1X,O,v3,B6 behavioral Assessment: GDS - language
767
+ LANGB7,Z1X,O,v3,B7 Functional Assessment: FAS - language
768
+ LANGB8,Z1X,O,v3,B8 Neurological Examination Findings - language
769
+ LANGB9,Z1X,O,v3,B9 Clinician Judgment of Symptoms - language
770
+ LANGC2,Z1X,O,v3,C2 Neuropsychological battery Scores - language
771
+ LANGD1,Z1X,O,v3,D1 Clinician Diagnosis - language
772
+ LANGD2,Z1X,O,v3,D2 Clinician-assessed Medical Conditions - language
773
+ LANGB3F,Z1X,O,v3,B3F Supplemental UPDRS - language
774
+ LANGB9F,Z1X,O,v3,B9F Clinical PPA and bvFTD Features - language
775
+ LANGC1F,Z1X,O,v3,C1F Neuropsychological battery Summary Scores - language
776
+ LANGC2F,Z1X,O,v3,C2F Social Norms Questionnaire - language
777
+ LANGC3F,Z1X,O,v3,C3F Social behavior Observer Checklist - language
778
+ LANGC4F,Z1X,O,v3,C4F behavioral Inhibition Scale - language
779
+ LANGC5F,Z1X,O,v3,C5F Interpersonal Reactivity Index - language
780
+ LANGC6F,Z1X,O,v3,C6F Revised Self-monitoring Scale - language
781
+ LANGE2F,Z1X,O,v3,E2F Imaging Available - language
782
+ LANGE3F,Z1X,O,v3,E3F Imaging in Diagnosis - language
783
+ LANGCLS,Z1X,O,v3,CLS Subject Demographics - language
784
+ CLSSUB,Z1X,O,v3,B3F Subject Demographics - language
785
+ NACCSPNL,CLS,D,v3,Average Spanish level (average of Questions 6 - 9)
786
+ NACCENGL,CLS,D,v3,Average English level (average of Questions 11 - 14)
787
+ APREFLAN,CLS,O,v3,In what language do you prefer to be evaluated (English or Spanish)
788
+ AYRSPAN,CLS,O,v3,How many years have you lived in an environment where people generally speak Spanish
789
+ AYRENGL,CLS,O,v3,How many years have you lived in an environment where people generally speak English
790
+ APCSPAN,CLS,O,v3,Please approximate the percentage of time during a normal/average day that you use Spanish
791
+ APCENGL,CLS,O,v3,Please approximate the percentage of time during a normal/average day that you use English
792
+ ASPKSPAN,CLS,O,v3,"In your opinion, what is your level of proficiency when you speak Spanish"
793
+ AREASPAN,CLS,O,v3,"In your opinion, what is your level of proficiency when you read Spanish"
794
+ AWRISPAN,CLS,O,v3,"In your opinion, what is your level of proficiency when you write in Spanish"
795
+ AUNDSPAN,CLS,O,v3,"In your opinion, what is your level of proficiency for understanding spoken/ oral Spanish"
796
+ ASPKENGL,CLS,O,v3,"In your opinion, what is your level of proficiency when you speak English"
797
+ AREAENGL,CLS,O,v3,"In your opinion, what is your level of proficiency when you read English"
798
+ AWRIENGL,CLS,O,v3,"In your opinion, what is your level of proficiency when you write in English"
799
+ AUNDENGL,CLS,O,v3,"In your opinion, what is your level of proficiency for understanding spoken/ oral English"
800
+ NACCFTD,U3,D,v3,One or more FTLD Module visits completed
801
+ NACCLBDM,U3,D,v3,One or more LbD Module visits completed
802
+ NACCNMRI,U3,D,v3,Total number of MRI sessions
803
+ NACCMRSA,U3,D,v3,At least one MRI scan available
804
+ NACCNAPA,U3,D,v3,Total number of amyloid PET scans available
805
+ NACCAPSA,U3,D,v3,At least one amyloid PET scan available
806
+ NACCACSF,U3,D,v3,One or more measures of Aβ1-42 reported
807
+ NACCPCSF,U3,D,v3,One or more measures of P-tau181P reported
808
+ NACCTCSF,U3,D,v3,One or more measures of T-tau reported
809
+ NACCAUTP,U3,D,v3,Neuropathology data from an autopsy is available
810
+ NACCNE4S,G1,D,,Number of APOE e4 alleles