ncs_mdes 0.11.0 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. data/CHANGELOG.md +16 -0
  2. data/Gemfile +1 -1
  3. data/README.md +15 -5
  4. data/bin/mdes-console +3 -1
  5. data/documents/1.2/child_or_parent_instrument_tables.yml +28 -0
  6. data/documents/2.0/child_or_parent_instrument_tables.yml +68 -0
  7. data/documents/2.1/child_or_parent_instrument_tables.yml +74 -0
  8. data/documents/2.2/child_or_parent_instrument_tables.yml +98 -0
  9. data/documents/3.0/child_or_parent_instrument_tables.yml +119 -0
  10. data/documents/3.1/child_or_parent_instrument_tables.yml +187 -0
  11. data/documents/3.2/child_or_parent_instrument_tables.yml +192 -0
  12. data/documents/scan_p_ids_for_children.rb +39 -0
  13. data/lib/ncs_navigator/mdes/code_list.rb +94 -0
  14. data/lib/ncs_navigator/mdes/differences/collection.rb +47 -0
  15. data/lib/ncs_navigator/mdes/differences/collection_criterion.rb +59 -0
  16. data/lib/ncs_navigator/mdes/differences/entry.rb +48 -0
  17. data/lib/ncs_navigator/mdes/differences/value.rb +7 -0
  18. data/lib/ncs_navigator/mdes/differences/value_criterion.rb +58 -0
  19. data/lib/ncs_navigator/mdes/differences.rb +12 -0
  20. data/lib/ncs_navigator/mdes/source_documents.rb +27 -0
  21. data/lib/ncs_navigator/mdes/specification.rb +45 -0
  22. data/lib/ncs_navigator/mdes/transmission_table.rb +61 -0
  23. data/lib/ncs_navigator/mdes/variable.rb +58 -4
  24. data/lib/ncs_navigator/mdes/variable_type.rb +27 -62
  25. data/lib/ncs_navigator/mdes/version.rb +1 -1
  26. data/lib/ncs_navigator/mdes.rb +5 -1
  27. data/spec/differences_matchers.rb +40 -0
  28. data/spec/ncs_navigator/mdes/code_list_spec.rb +178 -0
  29. data/spec/ncs_navigator/mdes/source_documents_spec.rb +14 -0
  30. data/spec/ncs_navigator/mdes/specification_spec.rb +30 -0
  31. data/spec/ncs_navigator/mdes/transmission_table_spec.rb +77 -0
  32. data/spec/ncs_navigator/mdes/variable_spec.rb +244 -0
  33. data/spec/ncs_navigator/mdes/variable_type_spec.rb +161 -40
  34. data/spec/spec_helper.rb +6 -0
  35. metadata +24 -5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,22 @@
1
1
  NCS Navigator MDES Module history
2
2
  =================================
3
3
 
4
+ 0.12.0
5
+ ------
6
+
7
+ - Add `#diff` methods to all levels in the specification tree. They produce
8
+ a computable difference between two instances. (#10)
9
+ - Add `TransmissionTable#child_instrument_table?` and
10
+ `TransmissionTable#parent_instrument_table?`. The values they return are
11
+ manually extracted from several sources and stored in files in each version's
12
+ documents directory. (#28)
13
+ - Drop support for Ruby 1.8.7.
14
+ - Rename `NcsNavigator::Mdes::VariableType::CodeList` to
15
+ `NcsNavigator::Mdes::CodeList` and
16
+ `NcsNavigator::Mdes::VariableType::CodeListEntry` to
17
+ `NcsNavigator::Mdes::CodeListEntry`. In the unlikely event that you had code
18
+ referring directly to either of these classes, you'll need to adjust it.
19
+
4
20
  0.11.0
5
21
  ------
6
22
 
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source :rubygems
1
+ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
data/README.md CHANGED
@@ -24,6 +24,8 @@ document in the API documentation, try looking at [rubydoc.info][].)
24
24
 
25
25
  [rubydoc.info]: http://rubydoc.info/github/NUBIC/ncs_mdes/master/frames
26
26
 
27
+ As of ncs_mdes 0.12.0, only Ruby 1.9.3+ is supported.
28
+
27
29
  ### Examine
28
30
 
29
31
  This gem includes a console for interactively analyzing and randomly
@@ -33,29 +35,37 @@ poking at the MDES. It is called `mdes-console`:
33
35
  Documents are expected to be in the default location.
34
36
  $mdesNM is a Specification for N.M.
35
37
  Available specifications are $mdes12, $mdes20, $mdes21, $mdes22, and $mdes30.
36
- ruby-1.9.3-p125 :001 >
38
+ :001 >
37
39
 
38
40
  It is based on ruby's IRB. Use it to examine the loaded MDES data
39
41
  without a lot of edit-save-run cycles:
40
42
 
41
- ruby-1.9.3-p125 :001 > $mdes20.transmission_tables.first.name
43
+ :001 > $mdes20.transmission_tables.first.name
42
44
  => "study_center"
43
45
 
44
46
  E.g., find all the variables of a particular XML schema type:
45
47
 
46
- ruby-1.9.3-p125 :002 > $mdes20.transmission_tables.collect { |t| t.variables }.flatten.select { |v| v.type.base_type == :decimal }.collect(&:name)
48
+ :002 > $mdes20.transmission_tables.collect { |t| t.variables }.flatten.select { |v| v.type.base_type == :decimal }.collect(&:name)
47
49
  => ["correction_factor_temp", "current_temp", "maximum_temp", "minimum_temp", "precision_term_temp", "trh_temp", "salts_moist", "s_33rh_reading", "s_75rh_reading", "s_33rh_reading_calib", "s_75rh_reading_calib", "precision_term_temp", "rf_temp", "correction_factor_temp", "sample_receipt_temp"]
48
50
 
49
51
  Or the labels for a particular code list:
50
52
 
51
- ruby-1.9.3-p125 :003 > $mdes20.types.find { |t| t.name == 'confirm_type_cl7' }.code_list.collect(&:label)
53
+ :003 > $mdes20.types.find { |t| t.name == 'confirm_type_cl7' }.code_list.collect(&:label)
52
54
  => ["Yes", "No", "Refused", "Don't Know", "Legitimate Skip", "Missing in Error"]
53
55
 
54
56
  Or the number of code lists that include "Yes" as an option:
55
57
 
56
- ruby-1.9.3-p125 :004 > $mdes20.types.select { |t| t.code_list && t.code_list.collect(&:label).include?('Yes') }.size
58
+ :004 > $mdes20.types.select { |t| t.code_list && t.code_list.collect(&:label).include?('Yes') }.size
57
59
  => 23
58
60
 
61
+ Or which variables in a table are different between two versions:
62
+
63
+ :005 > pp $mdes20['staff'].diff($mdes32['staff'])[:variables]; nil
64
+ #<NcsNavigator::Mdes::Differences::Collection:0x007fdd8bb4dff0
65
+ @entry_differences={},
66
+ @left_only=[],
67
+ @right_only=["ncs_active_date", "ncs_inactive_date"]>
68
+
59
69
  Develop
60
70
  -------
61
71
 
data/bin/mdes-console CHANGED
@@ -16,6 +16,7 @@ end
16
16
 
17
17
  require 'irb'
18
18
  require 'ncs_navigator/mdes'
19
+ require 'pp'
19
20
 
20
21
  $mdes12 = NcsNavigator::Mdes::Specification.new('1.2')
21
22
  $mdes20 = NcsNavigator::Mdes::Specification.new('2.0')
@@ -23,6 +24,7 @@ $mdes21 = NcsNavigator::Mdes::Specification.new('2.1')
23
24
  $mdes22 = NcsNavigator::Mdes::Specification.new('2.2')
24
25
  $mdes30 = NcsNavigator::Mdes::Specification.new('3.0')
25
26
  $mdes31 = NcsNavigator::Mdes::Specification.new('3.1')
27
+ $mdes32 = NcsNavigator::Mdes::Specification.new('3.2')
26
28
 
27
29
  expected_loc = ENV[NcsNavigator::Mdes::SourceDocuments::BASE_ENV_VAR] ?
28
30
  ENV[NcsNavigator::Mdes::SourceDocuments::BASE_ENV_VAR].inspect :
@@ -30,6 +32,6 @@ expected_loc = ENV[NcsNavigator::Mdes::SourceDocuments::BASE_ENV_VAR] ?
30
32
 
31
33
  puts "Documents are expected to be in #{expected_loc}."
32
34
  puts "$mdesNM is a Specification for N.M."
33
- puts "Available specifications are $mdes12, $mdes20, $mdes21, $mdes22, $mdes30 and $mdes31."
35
+ puts "Available specifications are $mdes12, $mdes20, $mdes21, $mdes22, $mdes30, $mdes31 and $mdes32."
34
36
 
35
37
  IRB.start(__FILE__)
@@ -0,0 +1,28 @@
1
+ child_instrument_tables:
2
+ - nine_mth_mother_detail
3
+ - six_mth_mother_detail
4
+ - six_mth_saq
5
+ - three_mth_mother_child_detail
6
+ - three_mth_mother_child_habits
7
+ - twelve_mth_mother_detail
8
+ parent_instrument_tables:
9
+ - birth_visit
10
+ - household_enumeration
11
+ - household_enumeration_age_elig
12
+ - household_enumeration_pregnant
13
+ - nine_mth_mother
14
+ - ppg_cati
15
+ - ppg_saq
16
+ - pre_preg
17
+ - preg_screen_eh
18
+ - preg_screen_hi
19
+ - preg_screen_pb
20
+ - preg_visit_1
21
+ - preg_visit_1_saq
22
+ - preg_visit_2
23
+ - preg_visit_2_saq
24
+ - preg_visit_li
25
+ - six_mth_mother
26
+ - three_mth_mother
27
+ - twelve_mth_mother
28
+ - twelve_mth_saq
@@ -0,0 +1,68 @@
1
+ child_instrument_tables:
2
+ - eighteen_mth_mother_detail
3
+ - eighteen_mth_mother_habits
4
+ - eighteen_mth_mother_otc
5
+ - eighteen_mth_mother_prescr
6
+ - eighteen_mth_mother_saq
7
+ - eighteen_mth_mother_suppl
8
+ - nine_mth_mother_detail
9
+ - six_mth_mother_detail
10
+ - six_mth_saq
11
+ - six_mth_saq_2
12
+ - spec_cord_blood
13
+ - three_mth_mother_child_detail
14
+ - three_mth_mother_child_habits
15
+ - twelve_mth_mother_detail
16
+ - twenty_four_mth_mother_detail
17
+ - twenty_four_mth_saq
18
+ parent_instrument_tables:
19
+ - birth_visit
20
+ - birth_visit_2
21
+ - birth_visit_li
22
+ - eighteen_mth_mother
23
+ - father_pv1
24
+ - household_enumeration
25
+ - household_enumeration_age_elig
26
+ - household_enumeration_pregnant
27
+ - household_inventory
28
+ - household_inventory_age
29
+ - household_inventory_age_elig
30
+ - internet_usage
31
+ - low_high_script
32
+ - nine_mth_mother
33
+ - ppg_cati
34
+ - ppg_saq
35
+ - pre_preg
36
+ - pre_preg_saq
37
+ - preg_screen_eh
38
+ - preg_screen_eh_2
39
+ - preg_screen_hi
40
+ - preg_screen_hi_2
41
+ - preg_screen_pb
42
+ - preg_screen_pb_2
43
+ - preg_visit_1
44
+ - preg_visit_1_2
45
+ - preg_visit_1_saq
46
+ - preg_visit_1_saq_2
47
+ - preg_visit_2
48
+ - preg_visit_2_2
49
+ - preg_visit_2_saq
50
+ - preg_visit_2_saq_2
51
+ - preg_visit_li
52
+ - preg_visit_li_2
53
+ - six_mth_mother
54
+ - spec_blood
55
+ - spec_urine
56
+ - tap_water_twf
57
+ - tap_water_twq
58
+ - three_mth_mother
59
+ - twelve_mth_mother
60
+ - twelve_mth_saq
61
+ - twelve_mth_saq_2
62
+ - twenty_four_mth_mother
63
+ - twenty_four_mth_mother_habits
64
+ - twenty_four_mth_mother_otc
65
+ - twenty_four_mth_mother_prescr
66
+ - twenty_four_mth_mother_suppl
67
+ - vacuum_bag
68
+ - validation_ins
@@ -0,0 +1,74 @@
1
+ child_instrument_tables:
2
+ - eighteen_mth_mother_detail
3
+ - eighteen_mth_mother_habits
4
+ - eighteen_mth_mother_mold
5
+ - eighteen_mth_mother_otc
6
+ - eighteen_mth_mother_prescr
7
+ - eighteen_mth_mother_saq
8
+ - eighteen_mth_mother_suppl
9
+ - nine_mth_mother_detail
10
+ - six_mth_mother_detail
11
+ - six_mth_saq
12
+ - six_mth_saq_2
13
+ - spec_cord_blood
14
+ - spec_cord_blood_2
15
+ - three_mth_mother_child_detail
16
+ - three_mth_mother_child_habits
17
+ - twelve_mth_mother_detail
18
+ - twenty_four_mth_mother_detail
19
+ - twenty_four_mth_mother_mold
20
+ - twenty_four_mth_saq
21
+ parent_instrument_tables:
22
+ - birth_visit
23
+ - birth_visit_2
24
+ - birth_visit_li
25
+ - eighteen_mth_mother
26
+ - father_pv1
27
+ - father_pv1_2
28
+ - household_enumeration
29
+ - household_enumeration_age_elig
30
+ - household_enumeration_pregnant
31
+ - household_inventory
32
+ - household_inventory_age
33
+ - household_inventory_age_elig
34
+ - internet_usage
35
+ - low_high_script
36
+ - nine_mth_mother
37
+ - ppg_cati
38
+ - ppg_saq
39
+ - pre_preg
40
+ - pre_preg_saq
41
+ - preg_screen_eh
42
+ - preg_screen_eh_2
43
+ - preg_screen_hi
44
+ - preg_screen_hi_2
45
+ - preg_screen_pb
46
+ - preg_screen_pb_2
47
+ - preg_visit_1
48
+ - preg_visit_1_2
49
+ - preg_visit_1_saq
50
+ - preg_visit_1_saq_2
51
+ - preg_visit_1_saq_3
52
+ - preg_visit_2
53
+ - preg_visit_2_2
54
+ - preg_visit_2_saq
55
+ - preg_visit_2_saq_2
56
+ - preg_visit_li
57
+ - preg_visit_li_2
58
+ - six_mth_mother
59
+ - spec_blood
60
+ - spec_urine
61
+ - tap_water_twf
62
+ - tap_water_twq
63
+ - three_mth_mother
64
+ - twelve_mth_mother
65
+ - twelve_mth_saq
66
+ - twelve_mth_saq_2
67
+ - twenty_four_mth_mother
68
+ - twenty_four_mth_mother_habits
69
+ - twenty_four_mth_mother_otc
70
+ - twenty_four_mth_mother_prescr
71
+ - twenty_four_mth_mother_suppl
72
+ - vacuum_bag
73
+ - validation_ins
74
+
@@ -0,0 +1,98 @@
1
+ child_instrument_tables:
2
+ - birth_visit_baby_name_2
3
+ - eighteen_mth_mother_detail
4
+ - eighteen_mth_mother_detail_2
5
+ - eighteen_mth_mother_habits
6
+ - eighteen_mth_mother_habits_2
7
+ - eighteen_mth_mother_mold
8
+ - eighteen_mth_mother_mold_2
9
+ - eighteen_mth_mother_otc
10
+ - eighteen_mth_mother_otc_2
11
+ - eighteen_mth_mother_prescr
12
+ - eighteen_mth_mother_prescr_2
13
+ - eighteen_mth_mother_saq
14
+ - eighteen_mth_mother_suppl
15
+ - eighteen_mth_mother_suppl_2
16
+ - nine_mth_mother_detail
17
+ - six_mth_mother_detail
18
+ - six_mth_saq
19
+ - six_mth_saq_2
20
+ - spec_cord_blood
21
+ - spec_cord_blood_2
22
+ - spec_cord_blood_3
23
+ - three_mth_mother_child_detail
24
+ - three_mth_mother_child_habits
25
+ - twelve_mth_mother_detail
26
+ - twenty_four_mth_mother_detail
27
+ - twenty_four_mth_mother_detail_2
28
+ - twenty_four_mth_mother_habits_2
29
+ - twenty_four_mth_mother_mold
30
+ - twenty_four_mth_mother_mold_2
31
+ - twenty_four_mth_mother_otc_2
32
+ - twenty_four_mth_mother_prescr_2
33
+ - twenty_four_mth_mother_suppl_2
34
+ - twenty_four_mth_saq
35
+ parent_instrument_tables:
36
+ - birth_visit
37
+ - birth_visit_2
38
+ - birth_visit_li
39
+ - eighteen_mth_mother
40
+ - eighteen_mth_mother_2
41
+ - father_pv1
42
+ - father_pv1_2
43
+ - household_enumeration
44
+ - household_enumeration_age_elig
45
+ - household_enumeration_pregnant
46
+ - household_inventory
47
+ - household_inventory_age
48
+ - household_inventory_age_elig
49
+ - internet_usage
50
+ - low_high_script
51
+ - nine_mth_mother
52
+ - ppg_cati
53
+ - ppg_saq
54
+ - pre_preg
55
+ - pre_preg_saq
56
+ - preg_screen_eh
57
+ - preg_screen_eh_2
58
+ - preg_screen_hi
59
+ - preg_screen_hi_2
60
+ - preg_screen_pb
61
+ - preg_screen_pb_2
62
+ - preg_visit_1
63
+ - preg_visit_1_2
64
+ - preg_visit_1_saq
65
+ - preg_visit_1_saq_2
66
+ - preg_visit_1_saq_3
67
+ - preg_visit_2
68
+ - preg_visit_2_2
69
+ - preg_visit_2_saq
70
+ - preg_visit_2_saq_2
71
+ - preg_visit_2_saq_3
72
+ - preg_visit_li
73
+ - preg_visit_li_2
74
+ - sample_dist
75
+ - six_mth_mother
76
+ - spec_blood
77
+ - spec_blood_2
78
+ - spec_urine
79
+ - tap_water_twf
80
+ - tap_water_twf_2
81
+ - tap_water_twf_saq
82
+ - tap_water_twq
83
+ - tap_water_twq_2
84
+ - tap_water_twq_saq
85
+ - three_mth_mother
86
+ - twelve_mth_mother
87
+ - twelve_mth_saq
88
+ - twelve_mth_saq_2
89
+ - twenty_four_mth_mother
90
+ - twenty_four_mth_mother_2
91
+ - twenty_four_mth_mother_habits
92
+ - twenty_four_mth_mother_otc
93
+ - twenty_four_mth_mother_prescr
94
+ - twenty_four_mth_mother_suppl
95
+ - vacuum_bag
96
+ - vacuum_bag_2
97
+ - vacuum_bag_saq
98
+ - validation_ins
@@ -0,0 +1,119 @@
1
+ child_instrument_tables:
2
+ - birth_visit_baby_name_2
3
+ - birth_visit_baby_name_3
4
+ - birth_visit_li_baby_name
5
+ - eighteen_mth_mother_detail
6
+ - eighteen_mth_mother_detail_2
7
+ - eighteen_mth_mother_habits
8
+ - eighteen_mth_mother_habits_2
9
+ - eighteen_mth_mother_mold
10
+ - eighteen_mth_mother_mold_2
11
+ - eighteen_mth_mother_otc
12
+ - eighteen_mth_mother_otc_2
13
+ - eighteen_mth_mother_prescr
14
+ - eighteen_mth_mother_prescr_2
15
+ - eighteen_mth_mother_saq
16
+ - eighteen_mth_mother_suppl
17
+ - eighteen_mth_mother_suppl_2
18
+ - nine_mth_mother_detail
19
+ - participant_verif_child
20
+ - six_mth_mother_detail
21
+ - six_mth_saq
22
+ - six_mth_saq_2
23
+ - six_mth_saq_3
24
+ - spec_cord_blood
25
+ - spec_cord_blood_2
26
+ - spec_cord_blood_3
27
+ - three_mth_mother_child_detail
28
+ - three_mth_mother_child_detail_2
29
+ - three_mth_mother_child_habits
30
+ - three_mth_mother_child_habits_2
31
+ - twelve_mth_mother_detail
32
+ - twelve_mth_mother_detail_2
33
+ - twenty_four_mth_mother_detail
34
+ - twenty_four_mth_mother_detail_2
35
+ - twenty_four_mth_mother_habits_2
36
+ - twenty_four_mth_mother_mold
37
+ - twenty_four_mth_mother_mold_2
38
+ - twenty_four_mth_mother_otc_2
39
+ - twenty_four_mth_mother_prescr_2
40
+ - twenty_four_mth_mother_suppl_2
41
+ - twenty_four_mth_saq
42
+ parent_instrument_tables:
43
+ - birth_visit
44
+ - birth_visit_2
45
+ - birth_visit_3
46
+ - birth_visit_diagnose_2_3
47
+ - birth_visit_household_3
48
+ - birth_visit_li
49
+ - eighteen_mth_mother
50
+ - eighteen_mth_mother_2
51
+ - father_pv1
52
+ - father_pv1_2
53
+ - household_enumeration
54
+ - household_enumeration_age_elig
55
+ - household_enumeration_pregnant
56
+ - household_inventory
57
+ - household_inventory_age
58
+ - household_inventory_age_elig
59
+ - internet_usage
60
+ - low_high_script
61
+ - multi_mode
62
+ - nine_mth_mother
63
+ - non_interview_respondent
64
+ - participant_verif
65
+ - pbs_elig_screener
66
+ - ppg_cati
67
+ - ppg_saq
68
+ - pre_preg
69
+ - pre_preg_saq
70
+ - preg_screen_eh
71
+ - preg_screen_eh_2
72
+ - preg_screen_hi
73
+ - preg_screen_hi_2
74
+ - preg_screen_pb
75
+ - preg_screen_pb_2
76
+ - preg_visit_1
77
+ - preg_visit_1_2
78
+ - preg_visit_1_3
79
+ - preg_visit_1_saq
80
+ - preg_visit_1_saq_2
81
+ - preg_visit_1_saq_3
82
+ - preg_visit_1_saq_4
83
+ - preg_visit_2
84
+ - preg_visit_2_2
85
+ - preg_visit_2_3
86
+ - preg_visit_2_saq
87
+ - preg_visit_2_saq_2
88
+ - preg_visit_2_saq_3
89
+ - preg_visit_2_saq_4
90
+ - preg_visit_li
91
+ - preg_visit_li_2
92
+ - sample_dist
93
+ - six_mth_mother
94
+ - spec_blood
95
+ - spec_blood_2
96
+ - spec_urine
97
+ - tap_water_twf
98
+ - tap_water_twf_2
99
+ - tap_water_twf_saq
100
+ - tap_water_twq
101
+ - tap_water_twq_2
102
+ - tap_water_twq_saq
103
+ - three_mth_mother
104
+ - three_mth_mother_2
105
+ - tracing_int
106
+ - twelve_mth_mother
107
+ - twelve_mth_mother_2
108
+ - twelve_mth_saq
109
+ - twelve_mth_saq_2
110
+ - twenty_four_mth_mother
111
+ - twenty_four_mth_mother_2
112
+ - twenty_four_mth_mother_habits
113
+ - twenty_four_mth_mother_otc
114
+ - twenty_four_mth_mother_prescr
115
+ - twenty_four_mth_mother_suppl
116
+ - vacuum_bag
117
+ - vacuum_bag_2
118
+ - vacuum_bag_saq
119
+ - validation_ins
@@ -0,0 +1,187 @@
1
+ child_instrument_tables:
2
+ - birth_visit_baby_name_2
3
+ - birth_visit_baby_name_3
4
+ - birth_visit_li_baby_name
5
+ - birth_visit_li_baby_name_2
6
+ - bitsea_saq
7
+ - child_anthro
8
+ - child_blood
9
+ - child_bp
10
+ - child_saliva
11
+ - child_saliva_saq
12
+ - child_urine
13
+ - core_quest_child_care
14
+ - core_quest_concern
15
+ - core_quest_disability
16
+ - core_quest_emergency_room
17
+ - core_quest_health_care
18
+ - core_quest_hh
19
+ - core_quest_hospitalizations
20
+ - core_quest_housing
21
+ - core_quest_income
22
+ - core_quest_insurance
23
+ - core_quest_interim_med
24
+ - core_quest_media
25
+ - core_quest_medical
26
+ - core_quest_neighborhood
27
+ - core_quest_occupation
28
+ - core_quest_pesticide
29
+ - core_quest_pets
30
+ - core_quest_program
31
+ - core_quest_sleep
32
+ - core_quest_smoke
33
+ - core_quest_well_child_care
34
+ - eighteen_mth_mother_detail
35
+ - eighteen_mth_mother_detail_2
36
+ - eighteen_mth_mother_habits
37
+ - eighteen_mth_mother_habits_2
38
+ - eighteen_mth_mother_habits_3
39
+ - eighteen_mth_mother_mold
40
+ - eighteen_mth_mother_mold_2
41
+ - eighteen_mth_mother_mold_3
42
+ - eighteen_mth_mother_otc
43
+ - eighteen_mth_mother_otc_2
44
+ - eighteen_mth_mother_otc_3
45
+ - eighteen_mth_mother_prescr
46
+ - eighteen_mth_mother_prescr_2
47
+ - eighteen_mth_mother_prescr_3
48
+ - eighteen_mth_mother_saq
49
+ - eighteen_mth_mother_saq_2
50
+ - eighteen_mth_mother_suppl
51
+ - eighteen_mth_mother_suppl_2
52
+ - eighteen_mth_mother_suppl_3
53
+ - fourteen_mth_asq_saq
54
+ - itsp_saq
55
+ - m_chat_saq
56
+ - nine_mth_mother_detail
57
+ - nine_mth_mother_detail_2
58
+ - participant_verif_child
59
+ - reconsideration_ins
60
+ - six_mth_mother_detail
61
+ - six_mth_mother_detail_2
62
+ - six_mth_saq
63
+ - six_mth_saq_2
64
+ - six_mth_saq_3
65
+ - six_mth_saq_4
66
+ - sixteen_mth_asq_saq
67
+ - spec_cord_blood
68
+ - spec_cord_blood_2
69
+ - spec_cord_blood_3
70
+ - thirty_month_interview_child
71
+ - thirty_mth_asq_saq
72
+ - three_mth_mother_child_detail
73
+ - three_mth_mother_child_detail_2
74
+ - three_mth_mother_child_habits
75
+ - three_mth_mother_child_habits_2
76
+ - three_mth_mother_child_habits_3
77
+ - twelve_mth_mother_detail
78
+ - twelve_mth_mother_detail_2
79
+ - twelve_mth_mother_detail_3
80
+ - twelve_mth_mother_mold_3
81
+ - twenty_four_mth_mother_detail
82
+ - twenty_four_mth_mother_detail_2
83
+ - twenty_four_mth_mother_habits_2
84
+ - twenty_four_mth_mother_habits_3
85
+ - twenty_four_mth_mother_mold
86
+ - twenty_four_mth_mother_mold_2
87
+ - twenty_four_mth_mother_otc_2
88
+ - twenty_four_mth_mother_otc_3
89
+ - twenty_four_mth_mother_prescr_2
90
+ - twenty_four_mth_mother_prescr_3
91
+ - twenty_four_mth_mother_suppl_2
92
+ - twenty_four_mth_mother_suppl_3
93
+ - twenty_four_mth_saq
94
+ - twenty_four_mth_saq_2
95
+ - twenty_mth_asq_saq
96
+ - twenty_seven_mth_asq_saq
97
+ - twenty_two_mth_asq_saq
98
+ parent_instrument_tables:
99
+ - birth_visit
100
+ - birth_visit_2
101
+ - birth_visit_3
102
+ - birth_visit_diagnose_2_3
103
+ - birth_visit_household_3
104
+ - birth_visit_li
105
+ - birth_visit_li_2
106
+ - breast_milk_saq
107
+ - bsi_saq
108
+ - eighteen_mth_mother
109
+ - eighteen_mth_mother_2
110
+ - eighteen_mth_mother_3
111
+ - father_pv1
112
+ - father_pv1_2
113
+ - household_enumeration
114
+ - household_enumeration_age_elig
115
+ - household_enumeration_pregnant
116
+ - household_inventory
117
+ - household_inventory_age
118
+ - household_inventory_age_elig
119
+ - internet_usage
120
+ - low_high_script
121
+ - multi_mode
122
+ - nine_mth_mother
123
+ - nine_mth_mother_2
124
+ - non_interview_respondent
125
+ - participant_verif
126
+ - pbs_elig_screener
127
+ - ppg_cati
128
+ - ppg_saq
129
+ - pre_preg
130
+ - pre_preg_saq
131
+ - preg_screen_eh
132
+ - preg_screen_eh_2
133
+ - preg_screen_hi
134
+ - preg_screen_hi_2
135
+ - preg_screen_pb
136
+ - preg_screen_pb_2
137
+ - preg_visit_1
138
+ - preg_visit_1_2
139
+ - preg_visit_1_3
140
+ - preg_visit_1_saq
141
+ - preg_visit_1_saq_2
142
+ - preg_visit_1_saq_3
143
+ - preg_visit_1_saq_4
144
+ - preg_visit_2
145
+ - preg_visit_2_2
146
+ - preg_visit_2_3
147
+ - preg_visit_2_saq
148
+ - preg_visit_2_saq_2
149
+ - preg_visit_2_saq_3
150
+ - preg_visit_2_saq_4
151
+ - preg_visit_li
152
+ - preg_visit_li_2
153
+ - sample_dist
154
+ - six_mth_mother
155
+ - six_mth_mother_2
156
+ - spec_blood
157
+ - spec_blood_2
158
+ - spec_urine
159
+ - tap_water_twf
160
+ - tap_water_twf_2
161
+ - tap_water_twf_saq
162
+ - tap_water_twq
163
+ - tap_water_twq_2
164
+ - tap_water_twq_saq
165
+ - thirty_month_interview
166
+ - three_mth_mother
167
+ - three_mth_mother_2
168
+ - three_mth_mother_3
169
+ - tracing_int
170
+ - twelve_mth_mother
171
+ - twelve_mth_mother_2
172
+ - twelve_mth_mother_3
173
+ - twelve_mth_saq
174
+ - twelve_mth_saq_2
175
+ - twelve_mth_saq_3
176
+ - twenty_four_mth_mother
177
+ - twenty_four_mth_mother_2
178
+ - twenty_four_mth_mother_3
179
+ - twenty_four_mth_mother_habits
180
+ - twenty_four_mth_mother_otc
181
+ - twenty_four_mth_mother_prescr
182
+ - twenty_four_mth_mother_suppl
183
+ - vacuum_bag
184
+ - vacuum_bag_2
185
+ - vacuum_bag_saq
186
+ - validation_ins
187
+ - validation_ins_2