|
Chapter Contents |
Previous |
Next |
| The LOAN Procedure |
This example shows the analysis and comparison of five alternative loans. Initialization cost, discount points, and both lump sum and periodic payments are included in the specification of these loans. Although no printed output is produced, the loan summary and loan comparison information is stored in the OUTSUM= and OUTCOMP= data sets. Output 13.4.1 illustrates the contents of the output data sets.
proc loan start=1998:12 noprint outsum=loans
amount=150000 life=360;
fixed rate=7.5 life=180 prepayment=500
label='BANK1, Fixed Rate';
arm rate=5.5 estimatedcase=(12=7.5 18=8)
label='BANK1, Adjustable Rate';
buydown rate=7 interval=semimonth init=15000
bdrates=(3=9 10=10) label='BANK2, Buydown';
arm rate=5.75 worstcase caps=(0.5 2.5)
adjustfreq=6 label='BANK3, Adjustable Rate'
prepayments=(12=2000 36=5000);
balloon rate=7.5 life=480
points=1100 balloonpayment=(15=2000 48=2000)
label='BANK4, with Balloon Payment';
compare at=(120 360) all marr=7 tax=33 outcomp=comp;
run;
proc print data=loans;
run;
proc print data=comp;
run;
Output 13.4.1: OUTSUM= and OUTCOMP= Data Sets|
|
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.