SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Debugging and Testing DATA Steps
Understanding DATA Step Processing


SAS Log

A note in the SAS log displays the number of observations and variables in the new data set.


The SAS log displays number of observations and variables.

You can use the PRINT procedure to view the data portion of your new data set.
     proc print data=finance.duejan;
     run;

Obs Account Amount Rate Months Payment Interest
1

101-1092

$22,000  10.00% 60 $467.43 183.333
2

101-1731

$114,000 9.50% 360 $958.57 902.500
3

101-1289

$10,000 10.50% 36 $325.02 87.500
4

101-3144

$3,500 10.50% 12 $308.52 30.625



back||next


Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.

Terms of Use & Legal Information | Privacy Statement