title 'Census of Canada, 1996: Basic summary tabulations part 8, CT level'. subtitle 'UT/DLS ed. SPSS control commands 08/98'. file handle in / name='B08CT.ASC.2' lrecl=494. data list file=in / cma 1-3 ctcode 4-7 filler 8-10 (a) #ctname 11-17 (a) blank1 18 (a) ief 19 (a) adq2 20 (a) bnder 21 (a) bdq2 22 (a) ala 23 (a) blank2 24-74 (a) v1 to v42 75-494. select if (ctcode gt 0). recode #ctname (convert) into ctname. formats ctname (f7.2). variable labels cma 'CMA/CA code' / ctcode 'Census tract/primary census tract code' / ctname 'Census tract name' / cmaname 'CMA/CA name' / ief 'Incomplete enumeration flag' / adq2 '2A data quality flag' / bnder 'Boundary error flag' / bdq2 '2B data quality flag' / ala 'Adjusted land area flag' / V1 'Total'/ V2 'Total husband-wife families'/ V3 'Families of now-married couples'/ V4 'Families of common-law couples'/ V5 'Total lone-parent families'/ V6 'Male parent'/ V7 'Female parent'/ V8 '0-14, Total - Family structure'/ V9 '0-14, Total husband-wife families'/ V10 '0-14, Families of now-married couples'/ V11 '0-14, Families of common-law couples'/ V12 '0-14, Total lone-parent families'/ V13 '0-14, Male parent'/ V14 '0-14, Female parent'/ V15 '15-24, Total - Family structure'/ V16 '15-24, Total husband-wife families'/ V17 '15-24, Families of now-married couples'/ V18 '15-24, Families of common-law couples'/ V19 '15-24, Total lone-parent families'/ V20 '15-24, Male parent'/ V21 '15-24, Female parent'/ V22 '25-44, Total - Family structure'/ V23 '25-44, Total husband-wife families'/ V24 '25-44, Families of now-married couples'/ V25 '25-44, Families of common-law couples'/ V26 '25-44, Total lone-parent families'/ V27 '25-44, Male parent'/ V28 '25-44, Female parent'/ V29 '45-64, Total - Family structure'/ V30 '45-64, Total husband-wife families'/ V31 '45-64, Families of now-married couples'/ V32 '45-64, Families of common-law couples'/ V33 '45-64, Total lone-parent families'/ V34 '45-64, Male parent'/ V35 '45-64, Female parent'/ V36 '65 and over, Total - Family structure'/ V37 '65 and over, Total husband-wife families'/ V38 '65 and over, Families of now-married couples'/ V39 '65 and over, Families of common-law couples'/ V40 '65 and over, Total lone-parent families'/ V41 '65 and over, Male parent'/ V42 '65 and over, Female parent'. value labels ief 2 'excludes data' 0 'no data excluded' / bdq2 adq2 1 '5%>nonresponse<25%' 4 '5%>housing nonresp<25%' / ala 1 'adjusted' 0 'not adjusted'. frequencies variables= cma filler blank1 ief to ala. descriptives variables=v1 to v42. execute. finish.