Hi all,
Pretty new SAS user here and I have search around (google) for this answer but i cant seem to find a good explanation. Can someone give me a hand and take 1 min to reply.
In the following code:
DATA _NULL_ ;
CALL SYMPUT ( 'n_obs' , put ( n_obs, 5. ) ) ;
STOP ;
SET dsname nobs = n_obs;
RUN ;
What does the '5' represent and what is it function?
Thanks!
... View more