* Incidents on School Property by Hour. GET FILE = 'Directory\Path\Incident 1999.sav'. VALUE LABELS inc_loc 1 'Air/Bus/Train Terminal' 2 'Bank/Savings and Loan' 3 'Bar/Night Club' 4 'Church/Synagogue/Temple' 5 'Commercial/Office Building' 6 'Construction Site' 7 'Convenience Store' 8 'Department/Discount Store' 9 "Drug Store/Doctor's Office/Hospital" 10 'Field/Woods' 11 'Government/Public Building' 12 'Grocery/Supermarket' 13 'Highway/Road/Alley' 14 'Hotel/Motel/Etc.' 15 'Jail/Prison' 16 'Lake/Waterway' 17 'Liquor Store' 18 'Parking Garage' 19 'Rental Storage Facility' 20 'Residence/Home' 21 'Restaurant' 22 'School/College' 23 'Service/Gas Station' 24 'Specialty Store' 25 'Other/Unknown'. FREQ inc_loc. TEMPORARY. SELECT IF inc_loc = 22. SAVE OUTFILE = 'Directory\Path\time_school data.sav'/keep = inc_hr rptdate inc_loc. GET FILE='Directory\Path\time_school data.sav'. VALUE LABELS inc_hr 1 '1 a.m.' 2 '2' 3 '3' 4 '4 a.m.' 5 '5' 6 '6 a.m.' 7 '7' 8 '8 a.m.' 9 '9' 10 '10 a.m.' 11 '11' 12 'Noon' 13 '1 p.m.' 14 '2' 15 '3 p.m.' 16 '4' 17 '5 p.m.' 18 '6' 19 '7 p.m.' 20 '8' 21 '9 p.m.' 22 '10' 23 '11 p.m.'. USE ALL. COMPUTE filter_$=(rptdate = ' ' and inc_hr gt 0). VARIABLE LABEL filter_$ "rptdate = ' ' (FILTER)". VALUE LABELS filter_$ 0 'Not Selected' 1 'Selected'. FORMAT filter_$ (f1.0). FILTER BY filter_$. * FREQ inc_hr. VARIABLE LABELS inc_hr 'Hour'. GRAPH /LINE(SIMPLE)=PCT BY inc_hr /MISSING=REPORT /TEMPLATE='Directory\Path\table3 template.sct' /TITLE= 'Incidents on School Property by Hour' /FOOTNOTE= 'Source: U.S. NIBRS Data 1999. ' 'The midnight hour was removed'+ ' from the graph due to misreporting issues.'.