what is conditional processing?
Answers were Sorted based on User's Feedback
Answer / xxx
mainly two types of conditions we are using,
Data step and Proc SQL coditions,
1. Datastep
--> where, if then else (nothing but filter conditions).
2. Proc SQL;
--> Case, When then else conditions.
loop coditions.
In macros we can use any kind of filter conditions.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / solasa
use "IF ,IF THEN,CASE,WHERE " terms to subset conditionally.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / beula.koduri24
macro facilty can control some portions of the sas program,based on a specfic conditions known as conditional processing.
| Is This Answer Correct ? | 2 Yes | 8 No |
What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;
How to get part of string form the source string without using sub string function in SAS?
How would you generate 1000 observations from a normal distribution with a mean of 50 and standard deviation of 20. How would you use PROC CHART to look at the distribution? Describe the shape of the distribution.
How do you generate random samples?
what is the purpose of _error_? : Sas programming
Mention few ways with which a “table lookup’ is done in sas programming.
What is connection profile? : sas-grid-administration
What are the analysis datasets created, and what are the new variables created in CLINICAL SAS
1 Answers Accenture, Sciformix,
How we can create SAS USER DEFINED CODE?
I have 2 data sets A & B. Both have a variable called Age in them, each of them specifying a different functionality. In my program I use bot these data sets. How do I specify which Age variable I want to use?
Intern stastical programmer written test
What is the purpose of using the N=PS option?