Did you used proc test? when?
No Answer is Posted For this Question
Be the First to Post Answer
How to convert .xls file into CSV format?
i have a dataset with 100000 records. i want 100 records from that dataset and create a dataset.we need to pick the observations random order like 100obs,500obs,1020obs,1890obs,2565obs like that i need 100 obs in random order? how can we create this one?
What is the basic structure of the SAS base program?
what is business intelligence? : Sas-bi
Why do we use QUIT commmand for proc datasets and proc sql ???
Hi, I have one dataset, could you please ans for this. id amount paid_amount 1 700 400 2 900 250 3 300 300 a 400 250 b 500 320 c 800 650 x 200 190 y 900 250 z 300 180 i want create new dataset having id and paid_amount who are paid high amount comparing amount. ex: 1d paid_amount 3 300 c 650 x 190
describe about physical data integration? : Sas-di
State the difference between INFORMAT and FORMAT ?
What is the use of %include statement?
what is the difference between nodup and nodupkey options? : Sas programming
what is the difference between proc report and proc format?
you have a data set like this. data qqq; input name $ total; cards; qq 22 ww 33 qq 22 ee 44 rr 33 ww 44 ; run; and you want output like this......... name total qq 22 ww 44 Do it by data set step.