-
Copy the program below and paste it into the Program Editor window (or issue the command
copy sashelp.oltutor..source ). data loan2;
set finance.loans;
is months>60;
Interest=amount*(late/12);
run;
Submit the program and use
the error messages in the SAS log to diagnose the error(s). Note: You may
need to use the SAS Explorer to examine information on
Finance.Loans.
-
Recall the DATA step to the Program Editor window. Correct and resubmit the
program. When correct, the SAS log will indicate that the data set
Loan2 contains three observations and six variables.
Return here and select Next.
|