libname spssdata 'c:\spssdata'; libname statadat dbstata 'c:\statadata' ver=64; options ps=58 ls=70 nocenter pageno=1 compress=no; * each card for each dataset is read into a separate SAS dataset; * then all are merged by the nindb number; * The nindb number is each person's unique identifying number; *All data is labeled by field and card number. For example, field 27 on card 1202 would be f27_1202. *Some fields have multiple parts. In these cases, each part is consecutively labeled a, b, and so on after the field number, in the order given in the codebook (ex. f27a1202); *All dates, or time amounts, including days, weeks, months, and years, are divided into their separate time elements within a field. For example, if field 6 gives month, day, and year, the written input is f06a for month, f06b for day, and f06c for year; *PS forms consist of 5 datasets: ps01, ps10, ps20, ps30, and ps40; data spssdata.ps01_1; * Card 1 of 3 ps01 cards; infile 'c:\Documents and Settings\john\Desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps01' lrecl=80; * uses column input; input cardnumb 1 @; * @ allows the conditional input; if cardnumb=1; *does not read in any other cardforms; input /* condition*/ nindb 6-14 site 6-7 familyno 8-12 pregnancy 13 plurality 14 person 13-14 sitefam 6-12 card1101 1-4 rev1101 5 id1101 6-14 /*same as NINDB number*/ f05_1101 15 f06_1101 16 f07_1101 17 /* 6-23 same on all 3 cards */ f08_1101 18 f09_1101 19-21 f10_1101 22-23 f11_1101 24-25 f12_1101 26 f13_1101 27 f14_1101 28 f15_1101 29 f16_1101 30 f17_1101 31 f18_1101 32 f19_1101 33 f20_1101 34 f21_1101 35 f22_1101 36 f23_1101 37 f24_1101 38 f25_1101 39 f26_1101 40 f27_1101 41 f28_1101 42 f29_1101 43 f30_1101 44 f31_1101 45 f32_1101 46 f33_1101 47 f34_1101 48 f35_1101 49 f36_1101 50 f37_1101 51 f38_1101 52 f39_1101 53 f40_1101 54 f41_1101 55 f42_1101 56 f43_1101 57 f44_1101 58 f45_1101 59 f46_1101 60 f47_1101 61 f48_1101 62 f49_1101 63 f50_1101 64 f51_1101 65 f52_1101 66 f53_1101 67 f54_1101 68 f55_1101 69; LABEL f05_1101='F5_Age' f06_1101='F5_Sex' f07_1101='F7_Race' f08_1101='F8_Final diagnosis' f09_1101='F9_Total mental score' f10_1101='F10_Total motor score' f11_1101='F11_Examiner' f12_1101='F12_Social smiles' f13_1101='F13_Visually recognizes mother' f14_1101='F14_Eyes follow pencil' f15_1101='F15_Reacts to paper on face' f16_1101='F16_Searches with eyes for sound' f17_1101='F17_Vocalizes to social stimulus' f18_1101='F18_Manipulates ring' f19_1101='F19_Vocalizes two syllables' f20_1101='F20_Regards cube' f21_1101='F21_Glances from one object to another' f22_1101='F22_Anticipatory adjustment to lifting' f23_1101='F23_Reacts to disappearance of face' f24_1101='F24_Reaches for ring' f25_1101='F25_Plays with rattle' f26_1101='F26_Fingers hand in play' f27_1101='F27_Follows vanishing ring' f28_1101='F28_Aware of strange situation' f29_1101='F29_Follows vanishing spoon' f30_1101='F30_Eyes follow ball across table' f31_1101='F31_Carries ring to mouth' f32_1101='F32_Manipulates table edge slightly' f33_1101='F33_Inspects own hands' f34_1101='F34_Closes on dangling ring' f35_1101='F35_Turns head to sound of bell' f36_1101='F36_Turns head to sound of rattle' f37_1101='F37_Reaches for cube' f38_1101='F38_Active table manipulations' f39_1101='F39_Regards pellet' f40_1101='F40_Approaches mirror image' f41_1101='F41_Picks up cube' f42_1101='F42_Exploitive paper play' f43_1101='F43_Retains 2 cubes' f44_1101='F44_Discriminates strageers' f45_1101='F45_Vocalizes attitudes' f46_1101='F46_Recovers rattle in crib or playpen' f47_1101='F47_Reaches persistently' f48_1101='F48_Turns head after dropped objects' f49_1101='F49_Lifts cup' f50_1101='F50_Reaches for second cube' f51_1101='F51_Enjoys frolic play' f52_1101='F52_Transfers object hand to hand' f53_1101='F53_Sustains inspection of ring' f54_1101='F54_Plays with string' f55_1101='F55_Picks up cube directly and easily'; run; data spssdata.ps01_2; *card 2 of 3 ps01 cards; infile 'c:\Documents and Settings\john\Desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\\PS01' lrecl=80; input cardnumb 1 @; *Does not read in any other cardforms; if cardnumb=2; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card2101 1-4 rev2101 5 id2101 6-14 /*id is the same as the NINDB number*/ f02a2101 15 f02b2101 16 f02c2101 17 f02d2101 18 f02e2101 19-21 f02f2101 22-23 f03_2101 24 f04_2101 25 f05_2101 26 f06_2101 27 f07_2101 28 f08_2101 29 f09_2101 30 f10_2101 31 f11_2101 32 f12_2101 33 f13_2101 34 f14_2101 35 f15_2101 36 f16_2101 37 f17_2101 38 f18_2101 39 f19_2101 40 f20_2101 41 f21_2101 42 f22_2101 43 f23_2101 44 f24_2101 45 f25_2101 46 f26_2101 47 f27_2101 48 f28_2101 49 f29_2101 50 f30_2101 51 f31_2101 52 f32_2101 53 f33_2101 54 f34_2101 55 f35_2101 56 f36_2101 57 f37_2101 58 f38_2101 59 f39_2101 60 f40_2101 61 f41_2101 62 f42_2101 63 f43_2101 64 f44_2101 65 f45_2101 66; LABEL f02a2101='F2a_Age' f02b2101='F2b_Sex' f02c2101='F2c_Race' f02d2101='F2d_Final diagnosis' f02e2101='F2e_Total mental score' f02f2101='F2f_Total motor score' f03_2101='F3_Pulls string_secures ring' f04_2101='F4_Enjoys sound production' f05_2101='F5_Lifts cup by handle' f06_2101='F6_Retains 2 cubes' f07_2101='F7_Attends to scribbling' f08_2101='F8_Looks for dropped object' f09_2101='F9_Manipulates bell_interest in details' f10_2101='F10_Responds playfully to mirror' f11_2101='F11_Vocalizes 4 different syllables' f12_2101='F12_Pulls string and secures ring' f13_2101='F13_Responds to social play' f14_2101='F14_Attempts to secure 3 cubes' f15_2101='F15_Rings bell imitatively' f16_2101='F16_Responds to name or nickname' f17_2101='F17_Says da da or equivalent' f18_2101='F18_Uncovers toy' f19_2101='F19_Adjusts to words' f20_2101='F20_Fingers holes in peg board' f21_2101='F21_Puts cube in cup' f22_2101='F22_Looks for contents of box' f23_2101='F23_Speed of response' f24_2101='F24_Intensity of response' f25_2101='F25_Duration of response' f26_2101='F26_Persistence in pursuit' f27_2101='F27_Intensity of social response' f28_2101='F28_Nature of social response_Examiner' f29_2101='F29_Nature of social response_Mother' f30_2101='F30_Activity level' f31_2101='F31_Physical development' f32_2101='F32_Mental development' f33_2101='F33_Fine motor development' f34_2101='F34_Gross motor development' f35_2101='F35_Social emotional development' f36_2101='F36_Adequacy of examinatin' f37_2101='F37_Face' f38_2101='F38_Mouth' f39_2101='F39_Hearing' f40_2101='F40_Eyes' f41_2101='F41_Grip' f42_2101='F42_Function of arms and hands' f43_2101='F43_Unusual muscular movements' f44_2101='F44_Deviant or stereotyped behavior' f45_2101='F45_Obvious defects'; run; data spssdata.ps01_3; *Card 3 of 3 ps01 cards; infile 'c:\Documents and Settings\john\Desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\PS01' lrecl=80; input cardnumb 1 @; if cardnumb=3; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card3101 1-4 rev3101 5 id3101 6-14 /*id is the same as the NINDB number*/ f02a3101 15 f02b3101 16 f02c3101 17 f02d3101 18 f02e3101 19-21 f02f3101 22-23 f03_3101 24 f04_3101 25 f05_3101 26 f06_3101 27 f07_3101 28 f08_3101 29 f09_3101 30 f10_3101 31 f11_3101 32 f12_3101 33 f13_3101 34 f14_3101 35 f15_3101 36 f16_3101 37 f17_3101 38 f18_3101 39 f19_3101 40 f20_3101 41 f21_3101 42 f22_3101 43 f23_3101 44 f24_3101 45 f25_3101 46 f26_3101 47 f27_3101 48 f28_3101 49 f29_3101 50 f30_3101 51 f31_3101 52 f32_3101 53 f33_3101 54 f34_3101 55 f35_3101 56 f36_3101 57 f37_3101 58 f38_3101 59 f39_3101 60 f40_3101 61 f41_3101 62 f42_3101 63 f43_3101 64 f44_3101 65; LABEL f02a3101='F2a_Age' f02b3101='F2b_Sex' f02c3101='F2c_Race' f02d3101='F2d_Final diagnosis' f02e3101='F2e_Total mental score' f02f3101='F2f_Total motor score' f03_3101='F3_Turns side to back' f04_3101='F4_Prone_elevates self by arms' f05_3101='F5_Sits with support' f06_3101='F6_Holds head steady' f07_3101='F7_Hands predominantly open' f08_3101='F8_Sits with support' f09_3101='F9_Retains cube briefly' f10_3101='F10_Turns from back to side' f11_3101='F11_Head balanced' f12_3101='F12_Effort to sit' f13_3101='F13_Partial thumb opposition' f14_3101='F14_Pulls to sitting' f15_3101='F15_Sits alone momentarily' f16_3101='F16_Unilateral reaching' f17_3101='F17_Sits alone 30 seconds or more' f18_3101='F18_Sits alone steadily' f19_3101='F19_Rolls from back to stomach' f20_3101='F20_Secures pellet_rake' f21_3101='F21_Sits alone' f22_3101='F22_Picks up cube' f23_3101='F23_Prewalking progression' f24_3101='F24_Early stepping' f25_3101='F25_Secures pellet_pincer' f26_3101='F26_Pulls to standing' f27_3101='F27_Raises self to sitting' f28_3101='F28_Pulls self to stand' f29_3101='F29_Brings two objects together' f30_3101='F30_Secures pellet_neat pincer' f31_3101='F31_Stepping movement' f32_3101='F32_Walks with help' f33_3101='F33_Sits down' f34_3101='F34_Expression of affection' f35_3101='F35_Evaluation of child' f36_3101='F36_Handling of child' f37_3101='F37_Management of child' f38_3101='F38_Reaction to childs needs' f39_3101='F39_Reaction to childs test performance' f40_3101='F40_Mothers focus of attn during exam' f41_3101='F41_Childs appearance' f42_3101='F42_Clinical impression' f43_3101='F43_Tested below 6 month level' f44_3101='F44_Tested above 10 month level'; run; *input ps10 forms 1 and 2; data spssdata.ps10_1; *card 1 of 2; infile 'c:\Documents and Settings\john\Desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps10' lrecl=80; input cardnumb 1 @; if cardnumb=1; *Does not read in any other cardforms; input /* condition*/ nindb 6-14 site 6-7 familyno 8-12 pregnancy 13 plurality 14 person 13-14 sitefam 6-12 card1101 1-4 rev1101 5 id1101 6-14 /*same as nindb number*/ f05_1110 15 f06_1110 16 f07_1110 17 f08_1110 18-19 f09_1110 20 f10_1110 21 f11_1110 22 f12_1110 23 f13_1110 24 f14_1110 25 f15_1110 26 f16_1110 27 f17_1110 28 f18_1110 29 f19_1110 30 f20_1110 31 f21_1110 32 f22_1110 33 f23_1110 34 f24_1110 35 f25_1110 36 f26_1110 37 f27_1110 38 f28_1110 39 f29_1110 40 f30_1110 41 f31_1110 42 f32_1110 43 f33_1110 44 f34_1110 45 f35_1110 46 f36_1110 47 f37_1110 48 f38_1110 49 f39_1110 50 f40_1110 51 f41_1110 52 f42_1110 53 f43_1110 54 f44_1110 55 f45_1110 56 f46_1110 57 f47_1110 58 f48_1110 59 f49_1110 60 f50_1110 61 f51_1110 62 f52_1110 63 f53_1110 64 f54_1110 65 f55_1110 66 f56_1110 67 f57_1110 68 f58_1110 69 f59_1110 70 f60_1110 71; LABEL f05_1110='F5_Age' f06_1110='F6_Sex' f07_1110='F7_Race' f08_1110='F8_Examiner' f09_1110='F9_Language Reception' f10_1110='F10_Language expression' f11_1110='F11_Hearing' f12_1110='F12_Speech mechanism' f13_1110='F13_Speech production' f14_1110='F14_Global scoring' f15_1110='F15_2 digit auditory memory' f16_1110='F16_3 digit auditory memory' f17_1110='F17_2 syllable auditory memory' f18_1110='F18_3 syllable auditory memory' f19_1110='F19_Adequacy' f20_1110='F20_Referral' f21_1110='F21_Language used' f22_1110='F22_Verbal comp_id familiar objects' f23_1110='F23_Verbal comp_action words' f24_1110='F24_Verbal comp_space realtionships' f25_1110='F25_Non-verbal comp_word and picture' f26_1110='F26_Non-verbal comp_word and object' f27_1110='F27_Non-verbal comp_pantomime' f28_1110='F28_Non-verbal comp_object to picture' f29_1110='F29_Verbal expression_naming object' f30_1110='F30_Verbal expression_sentence length' f31_1110='F31_Verbal expression_sentence struct' f32_1110='F32_Verbal expression_relevance' f33_1110='F33_Verbal expression_word order' f34_1110='F34_Verbal expression_use of pronouns' f35_1110='F35_Verbal expression_sum item score' f36_1110='F36_Non-verbal expression_pict pantom' f37_1110='F37_Non-verbal expression_object pantom' f38_1110='F38_Recall 2 digit' f39_1110='F39_Recall 3 digit' f40_1110='F40_Recall 2 syllable' f41_1110='F41_Recall 3 syllable' f42_1110='F42_Verbal Hi-list 1' f43_1110='F43_Verbal Hi-list 2' f44_1110='F44_Verbal Lo-list 3' f45_1110='F45_Verbal Lo-list 4' f46_1110='F46_Verbal Hi-list 5' f47_1110='F47_Verbal Hi-list 6' f48_1110='F48_Verbal Lo-list 7' f49_1110='F49_Verbal Lo-list 8' f50_1110='F50_Summary total score' f51_1110='F51_Summary score rt ear' f52_1110='F52_Summary score lt ear' f53_1110='F53_Lips retraction' f54_1110='F54_Lips protrusion' f55_1110='F55_Tongue mid protrusion' f56_1110='F56_Tongue lat protrusion' f57_1110='F57_Tongue elevation' f58_1110='F58_Soft palate elevation' f59_1110='F59_Lips diadochokinesis' f60_1110='F60_Tongue diadochokinesis'; run; data spssdata.ps10_2; *Card 2 of 2 ps10 cards; infile 'c:\Documents and Settings\john\Desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps10' lrecl=80; input cardnumb 1 @; if cardnumb=2; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card2110 1-4 rev2110 5 id2110 6-14 /*id is the same as the NINDB number*/ f02a2110 15 /*15-32 are the same variables as on card 1*/ f02b2110 16 f02c2110 17 f02d2110 18-19 f02e2110 20 f02f2110 21 f02g2110 22 f02h2110 23 f02i2110 24 f02j2110 25 f02k2110 26 f02l2110 27 f02m2110 28 f02n2110 29 f02o2110 30 f02p2110 31 f02q2110 32 f03_2110 33 f04_2110 34 f05_2110 35 f06_2110 36 f07_2110 37 f08_2110 38 f09_2110 39 f10_2110 40 f11_2110 41 f12_2110 42 f13_2110 43 f14_2110 44 f15_2110 45 f16_2110 46 f17_2110 47 f18_2110 48 f19_2110 49 f20_2110 50 f21_2110 51 f22_2110 52 f23_2110 53 f24_2110 54 f25_2110 55 f26_2110 56 f27_2110 57 f28_2110 58 f29_2110 59 f30_2110 60 f31a2110 61-62 f31b2110 63-64 f31c2110 65-66 f31d2110 67-68 f31e2110 69; LABEL f02a2110='F2a_Age' f02b2110='F2b_Sex' f02c2110='F2c_Race' f02d2110='F2d_Examiner' f02e2110='F2e_Language reception' f02f2110='F2f_Language expression' f02g2110='F2g_Hearing' f02h2110='F2h_Speech mechanism' f02i2110='F2i_Speech production' f02j2110='F2j_Global scoring' f02k2110='F2k_2 digit auditory memory' f02l2110='F2l_3 digit auditory memory' f02m2110='F2m_2 syllable auditory memory' f02n2110='F2n_3 syllable auditory memory' f02o2110='F2o_Adequacy' f02p2110='F2p_Referral' f02q2110='F2q_Language used' f03_2110='F3_Voice pitch' f04_2110='F4_Voice loudness' f05_2110='F5_Voice quality' f06_2110='F6_Voice summary score' f07_2110='F7_Articulation initial consonants' f08_2110='F8_Articulation final consonants' f09_2110='F9_Articulation vowels and diphthongs' f10_2110='F10_Articulation summary score' f11_2110='F11_Inteligibility of speech' f12_2110='F12_Summary evaluation rhythm' f13_2110='F13_Summary evaluation rate' f14_2110='F14_Summary evaluation loudness' f15_2110='F15_Summary evaluation pitch' f16_2110='F16_Summary evaluation quality' f17_2110='F17_Summary evaluation stress' f18_2110='F18_Summary evaluation articulation' f19_2110='F19_Summary evaluation other' f20_2110='F20_Summary score' f21_2110='F21_Fluency clonus' f22_2110='F22_Fluency tonus' f23_2110='F23_Fluency summary' f24_2110='F24_Head observable phys anomalies' f25_2110='F25_Face observable phys anomalies' f26_2110='F26_Ears observable phys anomalies' f27_2110='F27_Eyes observable phys anomalies' f28_2110='F28_Mouth observable phys anomalies' f29_2110='F29_Hand,arm observable phys anomalies' f30_2110='F30_Legs observable phys anomalies' f31a2110='F31a_Unusual behavior_1st type' f31b2110='F31b_Unusual behavior_2nd type' f31c2110='F31c_Unusual behavior_3rd type' f31d2110='F31d_Unusual behavior_4th type' f31e2110='F31e_Unusual behavior_total'; run; *input ps20 cards 1,2,3, and 4; data spssdata.ps20_1; *Card 1 of 4 ps20 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps20' lrecl=80; input cardnumb 1 @; if cardnumb=1; input nindb 6-14 site 6-7 familyno 8-12 pregnancy 13 plurality 14 person 13-14 sitefam 6-12 card1120 1-4 rev1120 5 id1120 6-14 /*= nindb number*/ f05_1120 15 f06_1120 16 f07_1120 17-18 f08a1120 19 f08b1120 20 f08c1120 21 f08d1120 22 f08e1120 23 f09_1120 24 f10_1120 25 f11_1120 26 f12_1120 27-29 f13_1120 30-32 f14_1120 33 f15_1120 34 f16a1120 35 f16b1120 36 f16c1120 37 f16d1120 38 f16e1120 39 f17a1120 40 f17b1120 41 f17c1120 42 f17d1120 43 f17e1120 44 f18a1120 45 f18b1120 46 f18c1120 47 f18d1120 48 f18e1120 49 f19a1120 50 f19b1120 51 f19c1120 52 f19d1120 53 f19e1120 54 f20a1120 55 f20b1120 56 f20c1120 57 f20d1120 58 f20e1120 59 f21a1120 60 f21b1120 61 f21c1120 62 f21d1120 63 f21e1120 64; LABEL f05_1120='F5_Sex' f06_1120='F6_Race' f07_1120='F7_Examined by' f08a1120='F8a_Clinical impress_intelligence' f08b1120='F8b_Clinical impress_fine motor devt' f08c1120='F8c_Clinical impress_gross motor devt' f08d1120='F8d_Clinical impress_concept formation' f08e1120='F8e_Clinical impress_behavioral' f09_1120='F9_Adequacy of entire test battery' f10_1120='F10_Summary statement overall impress' f11_1120='F11_Intelligence scale administered' f12_1120='F12_Chronological age' f13_1120='F13_IQ' f14_1120='F14_IQ classification' f15_1120='F15_Adequacy of intelligence scale administered' f16a1120='F16a_YearII_3-hold form board' f16b1120='F16b_YearII_Identifying parts of body' f16c1120='F16c_YearII_Picture vocabulary' f16d1120='F16d_YearII_Word combination' f16e1120='F16e_YearII_Alternate' f17a1120='F17a_YearII6_Identifying objects by use' f17b1120='F17b_YearII6_Naming objects' f17c1120='F17c_YearII6_Picture vocab' f17d1120='F17d_YearII6_Repeating 2 digits' f17e1120='F17e_YearII6_Alternate' f18a1120='F18a_YearIII_Picture vocab' f18b1120='F18b_YearIII_Block building' f18c1120='F18c_YearIII_Picture memories' f18d1120='F18d_YearIII_Copying a circle' f18e1120='F18e_YearIII_Alternate' f19a1120='F19a_YearIII6_Comparison of balls' f19b1120='F19b_YearIII6_Discrim of animal pics' f19c1120='F19c_YearIII6_Response to pictures' f19d1120='F19d_YearIII6_Comprehension' f19e1120='F19e_YearIII6_Alternate' f20a1120='F20a_YearIV_Picture vocab' f20b1120='F20b_YearIV_Naming objects from memory' f20c1120='F20c_YearIV_Opposite analogies' f20d1120='F20d_YearIV_Pictorial identification' f20e1120='F20e_YearIV_Alternate' f21a1120='F21a_YearIV6_Opposite analogies' f21b1120='F21b_YearIV6_Pic Simil and Differ' f21c1120='F21c_YearIV6_3 commissions' f21d1120='F21d_YearIV6_Comprehension III' f21e1120='F21e_yearIV6_Alternate'; run; data spssdata.ps20_2; *Card 2 of 4 ps20 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps20' lrecl=80; input cardnumb 1 @; if cardnumb=2; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card2120 1-4 rev2120 5 id2120 6-14 /*id is the same as the NINDB number*/ f02a2120 15 /*15-32 is the same variables as on card 1, fields 5-13*/ f02b2120 16 f02c2120 17-18 f02d2120 19 f02e2120 20 f02f2120 21 f02g2120 22 f02h2120 23 f02i2120 24 f02j2120 25 f02k2120 26 f02l2120 27-29 f02m2120 30-32 f02n2120 33 f02o2120 34 f03a2120 35 f03b2120 36 f03c2120 37 f03d2120 38 f03e2120 39 f04a2120 40 f04b2120 41 f04c2120 42 f04d2120 43 f04e2120 44 f05a2120 45 f05b2120 46 f05c2120 47 f05d2120 48 f05e2120 49 f06a2120 50 f06b2120 51 f06c2120 52 f06d2120 53 f06e2120 54 f07a2120 55 f07b2120 56 f07c2120 57 f07d2120 58 f07e2120 59 f08a2120 60 f08b2120 61 f08c2120 62 f08d2120 63 f08e2120 64; LABEL f02a2120='F2a_Sex' f02b2120='F2b_Race' f02c2120='F2c_Examined by' f02d2120='F2d_Clinical impress_intelligence' f02e2120='F2e_Clinical impress_fine motor devt' f02f2120='F2f_Clinical impress_gross motor devt' f02g2120='F2g_Clinical impress_concept formation' f02h2120='F2h_Clinical impress_behavioral' f02i2120='F2i_Adequacy of entire test battery' f02j2120='F2j_Summary statement overall impress' f02k2120='F2k_Intelligence scale administered' f02l2120='F2l_Chronological age' f02m2120='F2m_IQ' f02n2120='F2n_IQ classification' f02o2120='F2o_Adequacy of intelligence scale administered' f03a2120='F3a_YearV_picture completion' f03b2120='F3b_YearV_definitions' f03c2120='F3c_YearV_copying square' f03d2120='F3d_YearV_patience rectangles' f03e2120='F3e_YearV_alternate' f04a2120='F4a_YearVI_vocabulary' f04b2120='F4b_YearVI_differences' f04c2120='F4c_YearVI_number concepts' f04d2120='F4d_YearVI_opposite analogies' f04e2120='F4e_YearVI_alternate' f05a2120='F5a_YearVII_similarities' f05b2120='F5b_YearVII_copying diamond' f05c2120='F5c_YearVII_comprehension IV' f05d2120='F5d_YearVII_repeating 5 digits' f05e2120='F5e_YearVII_alternate' f06a2120='F6a_YearVIII_Vocab' f06b2120='F6b_YearVIII_verbal absurdities' f06c2120='F6c_YearVIII_similar & differ' f06d2120='F6d_YearVIII_comprehension IV' f06e2120='F6e_YearVIII_Alternate' f07a2120='F7a_YearIX_memory for designs' f07b2120='F7b_YearIX_rhymes' f07c2120='F7c_YearIX_making change' f07d2120='F7d_YearIX_repeat 4 digits reversed' f07e2120='F7e_YearIX_alternate' f08a2120='F8a_YearX_vocab' f08b2120='F8b_YearX_abstract words' f08c2120='F8c_YearX_word naming' f08d2120='F8d_YearX_repeat 6 digits' f08e2120='F8e_YearX_alternate'; run; data spssdata.ps20_3; *Card 3 of 4 ps20 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps20' lrecl=80; input cardnumb 1 @; if cardnumb=3; *Does not read in any other cardform; input /*Condition*/ nindb 6-14 card3120 1-4 rev3120 5 id3120 6-14 /*id is the same as the NINDB number*/ f02a3120 15 /*15-32 is the same variables as on card 1, fields 5-13*/ f02b3120 16 f02c3120 17-18 f02d3120 19 f02e3120 20 f02f3120 21 f02g3120 22 f02h3120 23 f02i3120 24 f02j3120 25 f02k3120 26 f02l3120 27-29 f02m3120 30-32 f02n3120 33 f02o3120 34 f03a3120 35 f03b3120 36 f03c3120 37 f04a3120 38 f04b3120 39 f04c3120 40 f05a3120 41-42 f05b3120 43-44 f05c3120 45-46 f06a3120 47 f06b3120 48-49 f06c3120 50-51 f06d3120 52-53 f07a3120 54-55 f07b3120 56-57 f07c3120 58 f07d3120 59 f07e3120 60 f07f3120 61 f07g3120 62 f07h3120 63 f08a3120 64 f08b3120 65 f08c3120 66 f08d3120 67 f08e3120 68 f08f3120 69 f08g3120 70 f08h3120 71 f09a3120 72 f09b3120 73 f09c3120 74 F09d3120 75; LABEL f02a3120='F2a_Sex' f02b3120='F2b_Race' f02c3120='F2c_Examined by' f02d3120='F2d_Clinical impress_intelligence' f02e3120='F2e_Clinical impress_fine motor devt' f02f3120='F2f_Clinical impress_gross motor devt' f02g3120='F2g_Clinical impress_concept formation' f02h3120='F2h_Clinical impress_behavioral' f02i3120='F2i_Adequacy of entire test battery' f02j3120='F2j_Summary statement overall impress' f02k3120='F2k_Intelligence scale administered' f02l3120='F2l_Chronological age' f02m3120='F2m_IQ' f02n3120='F2n_IQ classification' f02o3120='F2o_Adequacy of intelligence scale administered' f03a3120='F3a_Level III_raw score trial 1' f03b3120='F3b_Level III_raw score trial 2' f03c3120='F3c_Level III_raw score trial 3' f04a3120='F4a_Level II_raw score trial 1' f04b3120='F4b_Level II_raw score trial 2' f04c3120='F4c_Level II_raw score trial 3' f05a3120='F5a_Level IV_raw score trial 1' f05b3120='F5b_Level IV_raw score trial 2' f05c3120='F5c_Level IV_raw score trial 3' f06a3120='F6a_Summary raw score level III' f06b3120='F6b_Summary raw score level II' f06c3120='F6c_Summary raw score level IV' f06d3120='F6d_Summary raw score total' f07a3120='F7a_Gross line walk trial 1' f07b3120='F7b_Gross line walk trial 2' f07c3120='F7c_Gross line walk score' f07d3120='F7d_Gross hopping rt foot' f07e3120='F7e_Gross hopping lt foot' f07f3120='F7f_Gross ball catch trial 1' f07g3120='F7g_Gross ball catch trial 2' f07h3120='F7h_Gross ball catch trial 3' f08a3120='F8a_Fine Wallin pegboard rt hand' f08b3120='F8b_Fine Wallin pegboard lt hand' f08c3120='F8c_Fine copy form circle' f08d3120='F8d_Fine copy form cross' f08e3120='F8e_Fine copy form square' f08f3120='F8f_Fine stringing beads' f08g3120='F8g_Fine porteus maze IV' f08h3120='F8h_Fine porteus maze III' f09a3120='F9a_Dominance hand' f09b3120='F9b_Dominance leg' f09c3120='F9c_Dominance eye' F09d3120='F9d_Dominance overall summary'; run; data spssdata.ps20_4; *Card 4 of 4 ps20 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps20' lrecl=80; input cardnumb 1 @; if cardnumb=4; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card4120 1-4 rev4120 5 id4120 6-14 /*id is the same as the NINDB number*/ f02a4120 15 /*15-32 is the same variables as on card 1, fields 5-13*/ f02b4120 16 f02c4120 17-18 f02d4120 19 f02e4120 20 f02f4120 21 f02g4120 22 f02h4120 23 f02i4120 24 f02j4120 25 f02k4120 26 f02l4120 27-29 f02m4120 30-32 f02n4120 33 f02o4120 34 f03a4120 35 f03b4120 36 f04a4120 37 f04b4120 38 f05a4120 39 f05b4120 40 f05c4120 41 f06a4120 42 f06b4120 43 f07_4120 44 f08_4120 45 f09_4120 46 f10a4120 47 f10b4120 48 f11_4120 49 f12a4120 50 f12b4120 51 f12c4120 52 f12d4120 53 f12e4120 54 f12f4120 55 f13a4120 56 f13b4120 57 f13c4120 58 f13d4120 59 f13e4120 60 f13f4120 61 f13g4120 62 f13h4120 63 f14a4120 64 f14b4120 65 f14c4120 66 f14d4120 67 f14e4120 68 f14f4120 69 f14g4120 70 f14h4120 71 f15_4120 72; LABEL f02a4120='F2a_Sex' f02b4120='F2b_Race' f02c4120='F2c_Examined by' f02d4120='F2d_Clinical impress_intelligence' f02e4120='F2e_Clinical impress_fine motor devt' f02f4120='F2f_Clinical impress_gross motor devt' f02g4120='F2g_Clinical impress_concept formation' f02h4120='F2h_Clinical impress_behavioral' f02i4120='F2i_Adequacy of entire test battery' f02j4120='F2j_Summary statement overall impress' f02k4120='F2k_Intelligence scale administered' f02l4120='F2l_Chronological age' f02m4120='F2m_IQ' f02n4120='F2n_IQ classification' f02o4120='F2o_Adequacy of intelligence scale' f03a4120='F3a_Test situation emotional reactivity' f03b4120='F3b_Test situation irritability degree' f04a4120='F4a_Orient to examiner_cooperation' f04b4120='F4b_Orient to examiner_dependency' f05a4120='F5a_Orient to test_attention span' f05b4120='F5b_Orient to test_goal' f05c4120='F5c_Orient to test_directions' f06a4120='F6a_Level of activity' f06b4120='F6b_Nature of activity' f07_4120='F7_Nature of communication' f08_4120='F8_Face' f09_4120='F9_Mouth' f10a4120='F10a_Rt eye' f10b4120='F10b_Lt eye' f11_4120='F11_Ears' f12a4120='F12a_Musc movts head & neck' f12b4120='F12b_Musc movts arms & shoulders' f12c4120='F12c_Musc movts hands' f12d4120='F12d_Musc movts trunk' f12e4120='F12e_Musc movts legs & feet' f12f4120='F12f_Musc movts total body' f13a4120='F13a_Behavior_drop, throw, push' f13b4120='F13b_Behavior_thumb sucking' f13c4120='F13c_Behavior_nail biting' f13d4120='F13d_Behavior_hand motion' f13e4120='F13e_Behavior_smiling & laughing' f13f4120='F13f_Behavior_crying' f13g4120='F13g_Behavior_echolalia' f13h4120='F13h_Behavior_other' f14a4120='F14a_Defects_mongoloid' f14b4120='F14b_Defects_small head' f14c4120='F14c_Defects_large head' f14d4120='F14d_Defects_asummytry of skull' f14e4120='F14e_Defects_very obese' f14f4120='F14f_Defects_unusually small' f14g4120='F14g_Defects_skin condition' f14h4120='F14h_Defects_other' f15_4120='F15_Nursery school'; run; *input ps30 forms 1,2,3, and 4; data spssdata.ps30_1; *Card 1 of 4 ps30 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps30' lrecl=80; input cardnumb 1 @; if cardnumb=1; *Does not read in any other cardforms; input /* condition*/ nindb 6-14 site 6-7 familyno 8-12 pregnancy 13 plurality 14 person 13-14 sitefam 6-12 card1130 1-4 rev1130 5 id1130 6-14 /*same as nindb number*/ f05a1130 15 /*Years*/ f05b1130 17-18 /*Months*/ f06_1130 18 f07_1130 19 f08_1130 20-21 f09a1130 22-23 /*Month*/ f09b1130 24-25 /*Day*/ f09c1130 26-27 /*Year*/ f10a1130 28 f10b1130 29 f10c1130 30 f10d1130 31 f10e1130 32 f11a1130 33 f11b1130 34 f11c1130 35 f11d1130 36 f12a1130 37 f12b1130 38 f12c1130 39 f12d1130 40 f13a1130 41 f13b1130 42 f13c1130 43 f13d1130 44 f13e1130 45 f14a1130 46 f14b1130 47 f14c1130 48 f15a1130 49 f15b1130 50 f15c1130 51 f15d1130 52 f15e1130 53 f16a1130 54 f16b1130 55 f16c1130 56 f16d1130 57 f16e1130 58 f17a1130 59 f17b1130 60 f17c1130 61 f17d1130 62 f17e1130 63 f18a1130 64 f18b1130 $ 65 f18c1130 66 f19_1130 67-68 f20_1130 69 f21_1130 70-73; LABEL f05a1130='F5a_Age years' f05b1130='F5b_Age months' f06_1130='F6_Sex' f07_1130='F7_Race' f08_1130='F8_Examiner' f09a1130='F9a_Month of exam' f09b1130='F9a_Day of exam' f09c1130='F9a_Year of exam' f10a1130='F10a_FigA_1a distortion of shape' f10b1130='F10b_FigA_1b distortion of proportion' f10c1130='F10c_FigA_2 rotation' f10d1130='F10d_FigA_3 integration' f10e1130='F10e_FigA_Score' f11a1130='F11a_Fig1_4 distortion of shape' f11b1130='F11b_Fig1_5 rotation' f11c1130='F11c_Fig1_6 preservation' f11d1130='F11d_Fig1_Score' f12a1130='F12a_Fig2_7 Rotation' f12b1130='F12b_Fig2_8 Integration' f12c1130='F12c_Fig2_9 perseveration' f12d1130='F12d_Fig2_Score' f13a1130='F13a_Fig3_10 distortion of shape' f13b1130='F13b_Fig3_11 rotation' f13c1130='F13c_Fig3_12a integration design shape' f13d1130='F13d_Fig3_12b integration cont line' f13e1130='F13e_Fig3_Score' f14a1130='F14a_Fig4_13 rotation' f14b1130='F14b_Fig4_14 integration' f14c1130='F14c_Fig4_Score' f15a1130='F15a_Fig5_15 distortion of shape' f15b1130='F15b_Fig5_16 rotation' f15c1130='F15c_Fig5_17a integration design shape' f15d1130='F15d_Fig5_17b integration cont line' f15e1130='F15e_Fig5_Score' f16a1130='F16a_Fig6_18a distortion shape_curve' f16b1130='F16b_Fig6_18b_distortion shape_no curve' f16c1130='F16c_Fig6_19 integration' f16d1130='F16d_Fig6_20preservation' f16e1130='F16e_Fig6_Score' f17a1130='F17a_Fig7_21a distort shape_disproport' f17b1130='F17b_Fig7_21b distort shape_hexagon' f17c1130='F17c_Fig7_22 rotation' f17d1130='F17d_Fig7_23 integration' f17e1130='F17e_Fig7_Score' f18a1130='F18a_Fig8_24 distortion of shape' f18b1130='F18b_Fig8_25 rotation' f18c1130='F18c_Fig8_Score' f19_1130='F19_Total score' f20_1130='F20_Adequacy of examination' f21_1130='F21_Time in seconds'; run; data spssdata.ps30_2; *Card 2 of 4 ps30 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps30' lrecl=80; input cardnumb 1 @; if cardnumb=2; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card2130 1-4 rev2130 5 id2130 6-14 /*id is the same as the NINDB number*/ f03_2130 15-16 f04_2130 17-18 f05_2130 19-20 f06_2130 21-22 f07_2130 23-24 f08_2130 25-26 f09_2130 27-28 f10_2130 29-30 f11_2130 31-32 f12_2130 33-34 f13_2130 35-36 f14_2130 37-38 f15_2130 39-40 f16_2130 41-42 f17_2130 43-44 f18_2130 45-46 f19_2130 47-48 f20_2130 49-51 f21_2130 52-53 f22_2130 54-56 f23_2130 57-59 f24_2130 60-62 f25_2130 63 f26_2130 64 f27_2130 65-66 f28_2130 67-69 f29a2130 70 f29b2130 71-73 f30_2130 74; LABEL f03_2130='F3_Info raw score' f04_2130='F4_Info scaled score' f05_2130='F5_Comprehension raw score' f06_2130='F6_Comprehension scale score' f07_2130='F7_Vocabulary raw score' f08_2130='F8_Vocabulary scale score' f09_2130='F9_Digit span raw score' f10_2130='F10_Digit span scale score' f11_2130='F11_Sum of verbal tests' f12_2130='F12_Picture arrangement raw score' f13_2130='F13_Picture arrangement scale score' f14_2130='F14_Block design raw score' f15_2130='F15_Block design scale score' f16_2130='F16_Coding raw score' f17_2130='F17_Coding scale score' f18_2130='F18_Sum of performance tests' f19_2130='F19_Verbal scaled score' f20_2130='F20_Verbal IQ' f21_2130='F21_Performance scaled score' f22_2130='F22_Performance IQ' f23_2130='F23_Full scale scaled score' f24_2130='F24_Full scale IQ' f25_2130='F25_Adequacy of exam' f26_2130='F26_Intelligence scale administered' f27_2130='F27_Raw score' f28_2130='F28_Language age' f29a2130='F29a_Type of standard score' f29b2130='F29b_Standard score' f30_2130='F30_Adequacy of examination'; run; data spssdata.ps30_3; *Card 3 of 4 ps30 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps30' lrecl=80; input cardnumb 1 @; if cardnumb=3; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card3130 1-4 rev3130 5 id3130 6-14 /*id is the same as the NINDB number*/ f03_3130 15-16 f04_3130 17-19 f05_3130 20-21 f06_3130 22 f07_3130 23 f08_3130 24 f09_3130 25 f10_3130 26-27 f11_3130 28 f12_3130 29 f13_3130 30 f14_3130 31-32 f15_3130 33 f16_3130 34 f17_3130 35-36 f18a3130 37 f18b3130 38-39 f19_3130 40-41 f20a3130 42 f20b3130 43-44 f21_3130 45-46 f22a3130 47 f22b3130 48-49 f23_3130 50 f24_3130 51 f25_3130 52 f26_3130 53 f27_3130 54 f28_3130 55 f29_3130 56 f30_3130 57 f31_3130 58 f32_3130 59 f33_3130 60 f34_3130 61 f35_3130 62 f36_3130 63 f37_3130 64 f38_3130 65 f39_3130 66; LABEL f03_3130='F3_Raw score' f04_3130='F4_Standard score' f05_3130='F5_Percentile rank' f06_3130='F6_Adequacy of exam' f07_3130='F7_Drawing of same or opposite sex' f08_3130='F8_Right hand score' f09_3130='F9_Left hand score' f10_3130='F10_Total' f11_3130='F11_Adequacy of exam' f12_3130='F12_Two trials given' f13_3130='F13_Type of school' f14_3130='F14_Current grade' f15_3130='F15_Repeating grade' f16_3130='F16_Special class' f17_3130='F17_Spelling raw score' f18a3130='F18a_Spelling type of grade' f18b3130='F18b_Spelling grade' f19_3130='F19_Reading raw score' f20a3130='F20a_Reading type of grade' f20b3130='F20b_Reading grade' f21_3130='F21_Arithmetic raw score' f22a3130='F22a_Arithmetic type of grade' f22b3130='F22b_Arithmetic grade' f23_3130='F23_Adequacy of exam' f24_3130='F24_ITA spelling used' f25_3130='F25_Separation from mother' f26_3130='F26_Fearfulness' f27_3130='F27_Rapport with examiner' f28_3130='F28_Self-confidence' f29_3130='F29_Emotional reactivity' f30_3130='F30_Degree of cooperation' f31_3130='F31_Level of frustration tolerance' f32_3130='F32_Degree of dependence' f33_3130='F33_Duration of attention scan' f34_3130='F34_Goal orientation' f35_3130='F35_Level of activity' f36_3130='F36_Nature of activity' f37_3130='F37_Nature of communication' f38_3130='F38_Assertiveness' f39_3130='F39_Hostility'; run; data spssdata.ps30_4; *Card 4 of 4 ps30 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps30' lrecl=80; input cardnumb 1 @; if cardnumb=4; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card4130 1-4 rev4130 5 id4130 6-14 /*id is the same as the NINDB number*/ f03_4130 15 f04_4130 16 f05a4130 17 f05b4130 18 f05c4130 19 f06_4130 20 f07a4130 21 f07b4130 22 f07c4130 23 f07d4130 24 f07e4130 25 f07f4130 26 f08a4130 27 f08b4130 28 f08c4130 29 f08d4130 30 f08e4130 31 f08f4130 32 f08g4130 33 f08h4130 34 f09a4130 35 f09b4130 36 f09c4130 37 f09d4130 38 f09e4130 39 f09f4130 40 f09g4130 41 f09h4130 42 f09i4130 43 f10_4130 44 f11_4130 45 f12_4130 46 f13a4130 47 f13b4130 48 f13c4130 49 f14_4130 50 f15_4130 51 f16_4130 52 f17_4130 53 f18_4130 54 f19_4130 55 f20_4130 56; LABEL f03_4130='F3_Face' f04_4130='F4_Mouth' f05a4130='F5a_Right eye' f05b4130='F5b_Left eye' f05c4130='F5c_Wears glasses' f06_4130='F6_Ears' f07a4130='F7a_Unusual musc movt head & neck' f07b4130='F7b_Unusual musc movt arms & shoulders' f07c4130='F7c_Unusual musc movt hands' f07d4130='F7d_Unusual musc movt trunk' f07e4130='F7e_Unusual musc movt legs & feet' f07f4130='F7f_Unusual musc movt total body' f08a4130='F8a_Deviant behavior_thumb sucking' f08b4130='F8b_Deviant behavior_nail bitting' f08c4130='F8c_Deviant behavior_hand motioning' f08d4130='F8d_Deviant behavior_smiling & laughing' f08e4130='F8e_Deviant behavior_crying' f08f4130='F8f_Deviant behavior_echolalia' f08g4130='F8g_Deviant behavior_speech difficulties' f08h4130='F8h_Deviant behavior_other' f09a4130='F9a_Defects_mongoloid characteristics' f09b4130='F9b_Defects_very small head' f09c4130='F9c_Defects_very large head' f09d4130='F9d_Defects_asymmetry of skull' f09e4130='F9e_Defects_very obese' f09f4130='F9f_Defects_unusually small' f09g4130='F9g_Defects_skin condition' f09h4130='F9h_Defects_teeth' f09i4130='F9i_Defects_other' f10_4130='F10_Handedness' f11_4130='F11_Intelligence' f12_4130='F12_Bender visual motor production' f13a4130='F13a_Educational achievement_spelling' f13b4130='F13b_Educational achievement_reading' f13c4130='F13c_Educational achievement_math' f14_4130='F14_Goodenough-Harris drawing tests' f15_4130='F15_Abstract language thinking' f16_4130='F16_Tactile finger test' f17_4130='F17_Behavioral' f18_4130='F18_Overall impression' f19_4130='F19_Repeat exam' f20_4130='F20_Language used'; run; *input for ps40 forms 1,2,3,4,5 and 6; data spssdata.ps40_1; *Card 1 of 6 ps40 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps40' lrecl=80; input cardnumb 1 @; if cardnumb=1; *Does not read in any other cardforms; input /* condition*/ nindb 6-14 site 6-7 familyno 8-12 pregnancy 13 plurality 14 person 13-14 sitefam 6-12 card1140 1-4 rev1140 5 id1140 6-14 /*same as nindb number*/ f05a1140 15 /*Years*/ f05b1140 16-17 /*Months*/ f06_1140 18-19 f07a1140 20-21 f07b1140 22-23 f07c1140 24-25 f07d1140 26-27 f07e1140 28-29 f07f1140 30-31 f08a1140 32-33 f08b1140 34-35 f08c1140 36-37 f08d1140 38-39 f08e1140 40-41 f08f1140 42-43 f09_1140 44 f10_1140 45 f11a1140 46-47 f11b1140 48-49 f11c1140 50-51 f11d1140 52-53 f11e1140 54-55 f11f1140 56-57 f12a1140 58-59 f12b1140 60-61 f12c1140 62-63 f12d1140 64-65 f12e1140 66-67 f12f1140 68-69 f13_1140 70 f14_1140 71 f15_1140 72 f16_1140 73 f17_1140 74; LABEL f05a1140='F5a_Age years' f05b1140='F5b_Age months' f06_1140='F6_Examiner' f07a1140='F7a_Air conduction rt ear_250cps' f07b1140='F7b_Air conduction rt ear_500cps' f07c1140='F7c_Air conduction rt ear_1000cps' f07d1140='F7d_Air conduction rt ear_2000cps' f07e1140='F7e_Air conduction rt ear_4000cps' f07f1140='F7f_Air conduction rt ear_8000cps' f08a1140='F8a_Air conduction lt ear_250cps' f08b1140='F8b_Air conduction lt ear_500cps' f08c1140='F8c_Air conduction lt ear_1000cps' f08d1140='F8d_Air conduction lt ear_2000cps' f08e1140='F8e_Air conduction lt ear_4000cps' f08f1140='F8f_Air conduction lt ear_8000cps' f09_1140='F9_Air conduction method' f10_1140='F10_Adequacy of exam' f11a1140='F11a_Air cond masked rt ear_250cps' f11b1140='F11b_Air cond masked rt ear_500cps' f11c1140='F11c_Air cond masked rt ear_1000cps' f11d1140='F11d_Air cond masked rt ear_2000cps' f11e1140='F11e_Air cond masked rt ear_4000cps' f11f1140='F11f_Air cond masked rt ear_8000cps' f12a1140='F12a_Air cond masked lt ear_250cps' f12b1140='F12b_Air cond masked lt ear_500cps' f12c1140='F12c_Air cond masked lt ear_1000cps' f12d1140='F12d_Air cond masked lt ear_2000cps' f12e1140='F12e_Air cond masked lt ear_4000cps' f12f1140='F12f_Air cond masked lt ear_8000cps' f13_1140='F13_Rt ear 4000cps' f14_1140='F14_Rt ear 500cps' f15_1140='F15_Lt ear 4000cps' f16_1140='F16_Lt ear 500cps' f17_1140='F17_Adequacy of exam'; run; data spssdata.ps40_2; *Card 2 of 6 ps40 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps40' lrecl=80; input cardnumb 1 @; if cardnumb=2; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card2140 1-4 rev2140 5 id2140 6-14 /*id is the same as the NINDB number*/ f02a2140 15 /*Years*/ /*Field 2 is the same as fields 5 and 6 on ps40 card 1*/ f02b2140 16-17 /*Months*/ f02c2140 18-19 f03a2140 20-21 f03b2140 22-23 f03c2140 24-25 f03d2140 26-27 f04a2140 28-29 f04b2140 30-31 f04c2140 32-33 f04d2140 34-35 f05_2140 36 f06_2140 37 f07a2140 38-39 f07b2140 40-41 f07c2140 42-43 f07d2140 44-45 f08a2140 46-47 f08b2140 48-49 f08c2140 50-51 f08d2140 52-53 f09a2140 54-55 f09b2140 56-57 f09c2140 58 f10a2140 59-60 f10b2140 61-62 f10c2140 63 f11_2140 64 f12a2140 65-67 f12b2140 68 f13a2140 69-70 f13b2140 71; LABEL f02a2140='F2a_Age years' f02b2140='F2b_Age months' f02c2140='F2c_Examiner' f03a2140='F3a_Bone conduction rt ear_500cps' f03b2140='F3b_Bone conduction rt ear_1000cps' f03c2140='F3c_Bone conduction rt ear_2000cps' f03d2140='F3d_Bone conduction rt ear_4000cps' f04a2140='F4a_Bone conduction lt ear_500cps' f04b2140='F4a_Bone conduction lt ear_1000cps' f04c2140='F4a_Bone conduction lt ear_2000cps' f04d2140='F4a_Bone conduction lt ear_3000cps' f05_2140='F5_Bone conduction method' f06_2140='F6_Adequacy of exam' f07a2140='F7a_Bone cond masked rt ear_500cps' f07b2140='F7b_Bone cond masked rt ear_1000cps' f07c2140='F7c_Bone cond masked rt ear_2000cps' f07d2140='F7d_Bone cond masked rt ear_4000cps' f08a2140='F8a_Bone cond masked lt ear_500cps' f08b2140='F8b_Bone cond masked lt ear_1000cps' f08c2140='F8c_Bone cond masked lt ear_2000cps' f08d2140='F8d_Bone cond masked lt ear_4000cps' f09a2140='F9a_Rt ear hearing level' f09b2140='F9b_Rt ear discrimination percent' f09c2140='F9c_Rt ear list used' f10a2140='F10a_Lt ear hearing level' f10b2140='F10b_Lt ear discrimination percent' f10c2140='F10c_Lt ear list used' f11_2140='F11_Adequacy of exam' f12a2140='F12a_Digits_total pass score' f12b2140='F12b_Digits_adequacy of exam' f13a2140='F13a_Nonsense syllables_total pass score' f13b2140='F13b_Nonsense syllables_adequacy of exam'; run; data spssdata.ps40_3; *Card 3 of 6 ps40 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps40' lrecl=80; input cardnumb 1 @; if cardnumb=3; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card3140 1-4 rev3140 5 id3140 6-14 /*id is the same as the NINDB number*/ f02a3140 15 /*Years*/ /*Field 2 is the same as fields 5 and 6 on ps40 card 1*/ f02b3140 16-17 /*Months*/ f02c3140 18-19 f03a3140 20-21 f03b3140 22-24 f03c3140 25-28 f03d3140 29 f04a3140 30 f04b3140 31 f04c3140 32 f04d3140 33 f04e3140 34 f04f3140 35 f04g3140 36 f04h3140 37 f04i3140 38 f04j3140 39 f04k3140 40 f04l3140 41 f04m3140 42-43 f04n3140 44 f05a3140 45 f05b3140 46 f05c3140 47 f05d3140 48 f05e3140 49 f05f3140 50 f05g3140 51-52 f05h3140 53-54 f05i3140 55 f06a3140 56 f06b3140 57 f07a3140 58 f07b3140 59 f08a3140 60 f08b3140 61 f09a3140 62 f09b3140 63 f10a3140 64 f10b3140 65 f11a3140 66 f11b3140 67 f12_3140 68-69 f13_3140 70-71; LABEL f02a3140='F2a_Age years' f02b3140='F2b_Age months' f02c3140='F2c_Examiner' f03a3140='F3a_Word id_errors' f03b3140='F3b_Word id_raw score' f03c3140='F3c_Word id_vocab age' f03d3140='F3d_Word id_adequacy of exam' f04a3140='F4a_Orientation question 1' f04b3140='F4b_Orientation question 2' f04c3140='F4c_Orientation question 3' f04d3140='F4d_Orientation question 4' f04e3140='F4e_Orientation question 5' f04f3140='F4f_Orientation question 6' f04g3140='F4g_Orientation question 7' f04h3140='F4h_Orientation question 8' f04i3140='F4i_Orientation question 9' f04j3140='F4j_Orientation question 10' f04k3140='F4k_Orientation question 11' f04l3140='F4l_Orientation question 12' f04m3140='F4m_Orientation total score' f04n3140='F4n_Orientation adequacy of exam' f05a3140='F5a_Understanding story question 1' f05b3140='F5b_Understanding story question 2' f05c3140='F5c_Understanding story question 3' f05d3140='F5d_Understanding story question 4' f05e3140='F5e_Understanding story question 5' f05f3140='F5f_Understanding story raw score' f05g3140='F5g_Understanding story grade equiv' f05h3140='F5h_Understanding story age equiv' f05i3140='F5i_Understanding story adequacy of exam' f06a3140='F6a_Passage A_number of errors' f06b3140='F6b_Passage A_passage score' f07a3140='F7a_Passage B_number of errors' f07b3140='F7b_Passage B_passage score' f08a3140='F8a_Passage C_number of errors' f08b3140='F8b_Passage C_passage score' f09a3140='F9a_Passage D_number of errors' f09b3140='F9b_Passage D_passage score' f10a3140='F10a_Passage E_number of errors' f10b3140='F10b_Passage E_passage score' f11a3140='F11a_Passage F_number of errors' f11b3140='F11b_Passage F_passage score' f12_3140='F12_Total passage score' f13_3140='F13_Grade equivalent'; run; data spssdata.ps40_4; *Card 4 of 6 ps40 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps40' lrecl=80; input cardnumb 1 @; if cardnumb=4; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card4140 1-4 rev4140 5 id4140 6-14 /*id is the same as the NINDB number*/ f02a4140 15 /*Years*/ /*Field 2 is the same as fields 5 and 6 on ps40 card 1*/ f02b4140 16-17 /*Months*/ f02c4140 18-19 f03a4140 20-21 f03b4140 22-23 f03c4140 24-25 f03d4140 26-27 f03e4140 28-29 f03f4140 30-31 f03g4140 32-33 f03h4140 34-35 f04_4140 36 f05a4140 37 f05b4140 38 f05c4140 39 f05d4140 40 f06a4140 41 f06b4140 42 f06c4140 43 f06d4140 44 f06e4140 45 f06f4140 46 f06g4140 47-48 f06h4140 49-50 f06i4140 51 f07a4140 52-53 f07b4140 54-56 f07c4140 57 f08_4140 58-59 f09a4140 60 f09b4140 61 f09c4140 62 f09d4140 63 f09e4140 64 f09f4140 65 f10_4140 66 f11_4140 67 f12_4140 68 f13_4140 69-70 f14a4140 71 f14b4140 72 f14c4140 73 f14d4140 74 f14e4140 75 f14f4140 76 f14g4140 77 f15_4140 78; LABEL f02a4140='F2a_Age years' f02b4140='F2a_Age months' f02c4140='F2c_Examiner' f03a4140='F3a_Errors_aid' f03b4140='F3b_Errors_gross mispronunciation' f03c4140='F3c_Errors_partial mispronunciation' f03d4140='F3d_Errors_omission' f03e4140='F3e_Errors_insertion' f03f4140='F3f_Errors_substitution' f03g4140='F3g_Errors_repetition' f03h4140='F3h_Errors_inversion' f04_4140='F4_Adequacy of exam' f05a4140='F5a_Sample paragraph question 1' f05b4140='F5b_Sample paragraph question 2' f05c4140='F5c_Sample paragraph question 3' f05d4140='F5d_Adequacy of exam' f06a4140='F6a_Test paragraph question 1' f06b4140='F6b_Test paragraph question 2' f06c4140='F6c_Test paragraph question 3' f06d4140='F6d_Test paragraph question 4' f06e4140='F6e_Test paragraph question 5' f06f4140='F6f_Test paragraph total score' f06g4140='F6g_Test paragraph grade equiv' f06h4140='F6h_Test paragraph age equiv' f06i4140='F6i_Test paragraph adequacy of exam' f07a4140='F7a_Auditory vocal_raw score' f07b4140='F7b_Auditory vocal_age level score' f07c4140='F7c_Auditory vocal_adequacy of exam' f08_4140='F8_Number concepts expressed' f09a4140='F9a_Evaluation_sequence' f09b4140='F9b_Evaluation_elaboration' f09c4140='F9c_Evaluation_relevance' f09d4140='F9d_Evaluation_grammar' f09e4140='F9e_Evaluation_overall evaluation' f09f4140='F9f_Evaluation_adequacy of evaluation' f10_4140='F10_Total passes_list 1' f11_4140='F11_Total passes_list 2' f12_4140='F12_Total passes_list 3' f13_4140='F13_Total score_lists 1-3' f14a4140='F14a_Summary errors_illegible' f14b4140='F14b_Summary errors_reversal' f14c4140='F14b_Summary errors_substitution' f14d4140='F14b_Summary errors_addition' f14e4140='F14b_Summary errors_omission' f14f4140='F14b_Summary errors_sequence error' f14g4140='F14b_Summary errors_adecacy' f15_4140='F15_Handedness'; run; data spssdata.ps40_5; *Card 5 of 6 ps40 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps40' lrecl=80; input cardnumb 1 @; if cardnumb=5; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card5140 1-4 rev5140 5 id5140 6-14 /*id is the same as the NINDB number*/ f02a5140 15 /*Years*/ /*Field 2 is the same as fields 5 and 6 on ps40 card 1*/ f02b5140 16-17 /*Months*/ f02c5140 18-19 f03a5140 20 f03b5140 21 f04a5140 22 f04b5140 23 f04c5140 24 f05a5140 25 f05b5140 26 f05c5140 27 f05d5140 28 f05e5140 29 f06_5140 30 f07_5140 31 f08_5140 32 f09_5140 33 f10_5140 34 f11_5140 35 f12_5140 36 f13_5140 37 f14_5140 38 f15a5140 39 f15b5140 40 f15c5140 41 f15d5140 42 f15e5140 43 f15f5140 44 f15g5140 45 f15h5140 46 f16_5140 47-48 f17_5140 49 f18_5140 50 f19_5140 51 f20_5140 52 f21a5140 53 f21b5140 54 f21c5140 55 f21d5140 56 f21e5140 57 f21f5140 58 f22a5140 59 f22b5140 60 f22c5140 61 f22d5140 62 f22e5140 63 f23_5140 64 f24_5140 65 f25_5140 66 f26_5140 67 f27_5140 68 f28_5140 69 f29_5140 70 f30_5140 71 f31_5140 72 f32_5140 73 f33_5140 74 f34_5140 75 f35_5140 76; LABEL f02a5140='F2a_Age years' f02b5140='F2a_Age months' f02c5140='F2c_Examiner' f03a5140='F3a_Lips retraction' f03b5140='F3b_Lips protrusion' f04a5140='F4a_Tongue midline protrusion' f04b5140='F4b_Tongue lateral protrusion' f04c5140='F4c_Tongue elevation' f05a5140='F5a_Concom movts lip retraction' f05b5140='F5b_Concom movts lip protrusion' f05c5140='F5c_Concom movts tongue mid protrusion' f05d5140='F5d_Concom movts tongue lat protrusion' f05e5140='F5e_Concom movts tongue elevation' f06_5140='F6_Soft palate function' f07_5140='F7_Rate of speech sounds' f08_5140='F8_Dysfluent events' f09_5140='F9_Struggle behavior' f10_5140='F10_Voice pitch' f11_5140='F11_Voice loudness' f12_5140='F12_Voice quality phonation' f13_5140='F13_Voice quality resonance' f14_5140='F14_Intelligibility' f15a5140='F15a_Checklist_inappropriate rhythm' f15b5140='F15b_Checklist_inappropriate rate' f15c5140='F15c_Checklist_inappropriate stress' f15d5140='F15d_checklist_inappropriate loudness' f15e5140='F15e_Checklist_voice quality deviations' f15f5140='F15f_Checklist_articulatory imprecision' f15g5140='F15g_Checklist_telegraphic' f15h5140='F15g_Checklist_difficulty of sounds' f16_5140='F16_Articulation score' f17_5140='F17_Head' f18_5140='F18_Face' f19_5140='F19_Ears' f20_5140='F20_Eyes' f21a5140='F21a_Tongue & palate_cleft palate' f21b5140='F21b_Tongue & palate_cleft pal repaired' f21c5140='F21c_Tongue & palate_high hard palate' f21d5140='F21d_Tongue & palate_short soft palate' f21e5140='F21e_Tongue & palate_short ling palate' f21f5140='F21f_Tongue & palate_cleft lip' f22a5140='F22a_Teeth_malocculsions' f22b5140='F22b_Teeth_missing teeth' f22c5140='F22c_Teeth_drooling' f22d5140='F22d_Teeth_mouth' f22e5140='F22e_Teeth_other' f23_5140='F23_Hands and arms' f24_5140='F24_Legs' f25_5140='F25_General awkwardness' f26_5140='F26_Purposeless hand motions' f27_5140='F27_Unusual posturing' f28_5140='F28_Excessive crying' f29_5140='F29_Excessive laughing' f30_5140='F30_Hyperactivity' f31_5140='F31_Hypoactivity' f32_5140='F32_Lack of spontaneous communication' f33_5140='F33_Withdrawal' f34_5140='F34_Distractibility' f35_5140='F35_Negativism'; run; data spssdata.ps40_6; *Card 6 of 6 ps40 cards; infile 'c:\Documents and Settings\john\desktop\cpp cd 1 ascii data & original fiche documentation pdf\nichd cpp\ps40' lrecl=80; input cardnumb 1 @; if cardnumb=6; *Does not read in any other cardforms; input /*Condition*/ nindb 6-14 card6140 1-4 rev6140 5 id6140 6-14 /*id is the same as the NINDB number*/ f02a6140 15 /*Years*/ /*Field 2 is the same as fields 5 and 6 on ps40 card 1*/ f02b6140 16-17 /*Months*/ f02c6140 18-19 f03_6140 20 f04_6140 21 f05_6140 22 f06_6140 23 f07_6140 24 f08_6140 25 f09_6140 26 f10_6140 27 f11_6140 28 f12_6140 29 f13_6140 30 f14_6140 31-32 f15_6140 33 f16_6140 34; LABEL f02a6140='F2a_Age years' f02b6140='F2a_Age months' f02c6140='F2c_Examiner' f03_6140='F3_Perseveration' f04_6140='F4_Echolalia' f05_6140='F5_Impulsivity' f06_6140='F6_Echopraxia' f07_6140='F7_Motor disinhibition' f08_6140='F8_Short attention span' f09_6140='F9_Tics' f10_6140='F10_Tremors' f11_6140='F11_Other' f12_6140='F12_Referral' f13_6140='F13_Type of school' f14_6140='F14_School grade' f15_6140='F15_Repeating grade' f16_6140='F16_Special class'; run; data statadat.psy_dta1; merge spssdata.ps01_1 spssdata.ps01_2 spssdata.ps01_3 spssdata.ps10_1 spssdata.ps10_2 spssdata.ps20_1 spssdata.ps20_2 spssdata.ps20_3 spssdata.ps20_4; by nindb; run; data statadat.psy_dta2; merge spssdata.ps30_1 spssdata.ps30_2 spssdata.ps30_3 spssdata.ps30_4 spssdata.ps40_1 spssdata.ps40_2 spssdata.ps40_3 spssdata.ps40_4 spssdata.ps40_5 spssdata.ps40_6; by nindb; run; data spssdata.psy_dta1; merge spssdata.ps01_1 spssdata.ps01_2 spssdata.ps01_3 spssdata.ps10_1 spssdata.ps10_2 spssdata.ps20_1 spssdata.ps20_2 spssdata.ps20_3 spssdata.ps20_4 spssdata.ps30_1 spssdata.ps30_2 spssdata.ps30_3 spssdata.ps30_4 spssdata.ps40_1 spssdata.ps40_2 spssdata.ps40_3 spssdata.ps40_4 spssdata.ps40_5 spssdata.ps40_6; by nindb; run; data spssdata.psforms; merge spssdata.ps01_1 spssdata.ps01_2 spssdata.ps01_3 spssdata.ps10_1 spssdata.ps10_2 spssdata.ps20_1 spssdata.ps20_2 spssdata.ps20_3 spssdata.ps20_4 spssdata.ps30_1 spssdata.ps30_2 spssdata.ps30_3 spssdata.ps30_4 spssdata.ps40_1 spssdata.ps40_2 spssdata.ps40_3 spssdata.ps40_4 spssdata.ps40_5 spssdata.ps40_6; by nindb; run; data spssdata.psforms; merge spssdata.ps01_1 spssdata.ps01_2 spssdata.ps01_3 spssdata.ps10_1 spssdata.ps10_2 spssdata.ps20_1 spssdata.ps20_2 spssdata.ps20_3 spssdata.ps20_4 spssdata.ps30_1 spssdata.ps30_2 spssdata.ps30_3 spssdata.ps30_4 spssdata.ps40_1 spssdata.ps40_2 spssdata.ps40_3 spssdata.ps40_4 spssdata.ps40_5 spssdata.ps40_6; by nindb; run; * the datasets for each cardform are match-merged; * by nindb; * The merged dataset is all data for PS01 with one; * record per nindb/individual from the three cardforms; * the three cards are not present for all nindbs/ * individuals; filename psych 'c:\Documents and Settings\john\Desktop\psychological forms no ps 26.xpt'; proc cport data=psforms_allobs_nops26 file=psych nocompress; run;