SAS

[SAS] print the first 10 line of data

Aubreyy 2022. 4. 24. 03:06
/*Check the data*/
/*If you want to check 20 line, you can change (obs=10) to (obs=20)*/
proc print data=db (obs=10); run;