What are pdv and it functions?
No Answer is Posted For this Question
Be the First to Post Answer
How do you define proc in sas? : sas-grid-administration
What is the pound sign used for the DATA _NULL_?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
how to import XTP files into SAS datasets?
1 Answers Barclays, Institute For Plasma Research,
what is the usage for assigning error=1 in a dataset ?
how to import HTML files into SAS datasets?
what is the prob plot in clinical domain
name several ways to achieve efficiency in your program? : Sas programming
what are sas bi dashboard components? : Sas-bi
hi guys ...i have one query... data abc; input s w k g o t a m; cards; 1 2 3 4 5 6 7 8 2 3 4 5 6 7 8 9 ; run; i want the output to be the sorted order(only variables).observations should not be changed..
Describe 5 ways to do a “table lookup” in SAS?
/* To determine the maximum and minimum of V1 */ data before3; input v1 v2 v3; cards; 3 2 1 4 6 5 2 1 3 6 5 4 1 3 2 5 4 6 ; run;