what is PhaseIII, ODS, TLG, Macro and Proc in SAS
Answer / Indira.v
Phase III refers to the final phase of the SAS Life Cycle which involves deploying and maintaining the SAS applications in a production environment. ODS (Output Delivery System) is a feature in SAS that allows the creation of multiple output formats, such as HTML, PDF, and XML. TLG (Task Language Generator) is a facility within SAS that allows users to create their own functions and macros. Macro is a set of SAS statements that can be stored in a library and executed multiple times with different parameters. Proc is short for PROCEDURE, which are precompiled sets of SAS instructions that perform specific tasks.
| Is This Answer Correct ? | 0 Yes | 0 No |
how do you derive descriptive statistics?
1 Answers Accenture, Quintiles,
What is the difference between verification and validation?
What do the mod and int function do? : Sas programming
How would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable?
how does sas handle missing values in an update? : Sas programming
why is the use of Retrive statement and give me with example?
how do you debug and test your sas programs? : Sas programming
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
Identify statements whose placement in the DATA step is critical.
How do you write a test plan?
What is the size of PDV?
Give some examples where proc report’s defaults are same as proc print’s defaults?