what are validation tools that are used in sas? : Sas-administrator
No Answer is Posted For this Question
Be the First to Post Answer
Please, anyone, let me know the style or an example of using 'by='/'by' variable of a PDV(Program Data Vector)
3 Answers Verinon Technology Solutions,
Describe the function and utility of the most difficult SAS macro that you have written?
IS SAS COMPILER OR INTERPRETER? EXPLAIN?
3 Answers Aon Hewitt, HSBC, SCL, TCS,
What are the features of base sas system?
How would you include common or reuse code to be processed along with your statements?
what are different analysis datasets you created and what are the new variables created
How to read an input file in sas?
Approximately what date is represented by SAS date value of 730
Could you please answers for this. 1.Code the tables statement for a single-level (most common) frequency. 2.Code the tables statement to produce a multi-level frequency.
Differentiate between sas functions and sas procedures.
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;