*** 1982 data *** DATA LIST FILE='C:\\TechnicalAppendix/da8429.p50' / V1 1-4 V2 5-5 V3 6-7 V4 8-13 V5 14-15 V6 16-17 V7 18-19 (A) V8 20-20 (A) V9 21-27 (A) V10 28-29 V11 30-31 V12 32-33 V13 34-35 V14 36-38 V15 39-40 V16 41-42 V17 43-44 V18 45-48 V19 49-52 V20 53-54 V21 55-56 V22 57-60 V23 61-64 V24 65-69 V25 70-109 (A) V26 110-111 V27 112-113 V28 114-115 V29 116-117 V30 118-119 V31 120-121 V32 122-125 V33 126-127 V34 128-129 V35 130-133 V36 134-135 V37 136-137 V38 138-139 V39 140-141 V40 142-143 V41 144-145 V42 146-147 . VARIABLE LABELS V6 "Circuit" V7 "District" V8 "Office" V9 "Docket Number" V10 "Filing Year" V11 "Filing Month" V12 "Filing Day" V13 "Jurisdiction" V14 "Nature Of Suit" V15 "Origin" V17 "Class Action" V22 "Demand" V24 "County" V25 "Style-Parties Involved" V26 "Termination Year" V27 "Termination Month" V28 "Termination Day" V29 "Filing Year Used By Ao" V30 "Filing Month Used By AO" V31 "Disposition" V33 "Procedural Progress" V34 "Nature Of Judgment" V35 "Amount Received" V38 "Judgment For" V39 "Magistrate Involvement" V40 "Other Involvement" V41 "Term Year Used By AO" V42 "Term Month Used By AO" . RENAME VARIABLES V6=circuit V7=district V8=office V9=docket V10=filingyr V11=filingmo V12=filingdy V13=jurisd V14=nos V15=source V17=termcact V22=demand V24=county V25=style V26=termyr V27=termmo V28=termdy V29=aofileyr V30=aofilemo V31=disp79 V33=proced76 V34=noj V35=award V38=judgefor V39=maginv V40=otherinv V41=aotermyr V42=aotermmo . EXECUTE. FILTER OFF. USE ALL. SELECT IF(nos > 499 & nos < 600). EXECUTE . RECODE filingyr (Lowest thru 0=SYSMIS) (100 thru Highest=SYSMIS) / filingmo (Lowest thru -1=SYSMIS) (13 thru Highest=SYSMIS) / filingdy (Lowest thru -1=SYSMIS) (32 thru Highest=SYSMIS) . RECODE termyr (Lowest thru 0=SYSMIS) (100 thru Highest=SYSMIS) / termmo (Lowest thru -1=SYSMIS) (13 thru Highest=SYSMIS) / termdy (Lowest thru -1=SYSMIS) (32 thru Highest=SYSMIS) . RECODE aofileyr (Lowest thru 0=SYSMIS) (100 thru Highest=SYSMIS) / aofilemo (Lowest thru -1=SYSMIS) (13 thru Highest=SYSMIS) . RECODE aotermyr (Lowest thru 0=SYSMIS) (100 thru Highest=SYSMIS) / aotermmo (Lowest thru -1=SYSMIS) (13 thru Highest=SYSMIS) . EXECUTE . COMPUTE filing = (filingyr*10000)+(filingmo*100)+(filingdy) . COMPUTE termdate = (termyr*10000)+(termmo*100)+(termdy) . COMPUTE aofile = (aofileyr*100)+(aofilemo) . COMPUTE aoterm = (aotermyr*100)+(aotermmo) . COMPUTE year = 82 . COMPUTE circuit2 = 99 . COMPUTE class2 = -9 . COMPUTE disp70 = -9 . COMPUTE disp87 = -9 . COMPUTE proced70 = -9 . COMPUTE proced87 = -9 . COMPUTE class = -9 . COMPUTE prose = -9 . COMPUTE tapeyear = -9 . EXECUTE. save outfile='C:\\TechnicalAppendix/1982.sav' /keep = year circuit circuit2 district office docket filingyr filingmo filingdy filing jurisd nos source class class2 demand county style termyr termmo termdy termdate aofileyr aofilemo aofile disp70 disp79 disp87 proced70 proced76 proced87 noj award judgefor maginv otherinv aotermyr aotermmo aoterm termcact prose tapeyear .