what are system option ? give few examples ?
what are dataset options and dataset statements ?
if there is a keep option and keep statement ? which one is
executed first ?
Difference between a WHERE statement and IF statement ?
what is the advantage of using WHERE statement option on
the dataset ?
Answer / sushil nayak
1) System options are global instructions that affect the entire SAS session and control the way SAS performs operations. Once you invoke a system option, it remains in effect for all subsequent data and proc steps in a SAS job, unless you specify them. For example .. OPTIONS NODATE PAGESIZE=MAX LINSIZE=MAX NOCENTER; ..search SAS online doc to knw more options.
2)Dataset options are options that you code after dataset name,for example KEEP= DROP= WHERE= FIRSTOBS= OBS=..etc dataset statement are coded anywhere within the data and run statements..for example KEEP DROP WHERE RETAIN ..etc
3)If KEEP= and KEEP statement is coded then KEEP option gets executed 1st and then the statement.
4) The following are some of the differences between the IF and WHERE statement ::
a)IF works on newly created variable within the same DATASTEP(for example, variable created by reading a raw file), but WHERE would not work for newly created variable.
b) IF works on Automatic variable (_n_,first. , last.), but WHERE would not work for the same.
c)WHERE can be applied in PROC and DATASTEPS, but IF can be applied to DATASTEPS only.
d) IF does a char to num conversion or visa-versa while checking a condition (IF NEEDED), but WHERE would no cause ERROR, stating that variable being checked is incompatible variable.
There are other differences, would recommend searching sas online or sas sugi papers to knw more.
5) If a WHERE and IF can be applied with a datastep then WHERE should be choosen, reason being, the WHERE statement is more efficient than IF statement.
Is This Answer Correct ? | 9 Yes | 1 No |
How would you determine how far down on a page you have printed in order to print out footnotes?
What is the difference between using drop = data set option in data statement and set statement?
How do you write a test plan?
how to shift the rows to cols? eg: i have like field1 field2 field3 10 20 20 this should be displayed as field1 10 field2 20 field3 30 (without the obs col) how do this?can i use transpose or tell me suitable way to do this?
what type of reports you are generating in your company...???
2 Answers GSK GlaxoSmithKline,
what is the diff b/w verification validation in sas
1.What is the difference between _NULL_ , _ALL_, and _N_? 2.What are the uses of _NULL_ using in Data Steps? Can we _NULL_ in Proc Steps also? 3.How do call the macro variable in Data Steps? 4.How to construct Pivot tables in Excel Using SAS?
i want to upload titles and footnotes to excel file?how it is possible?
What are the efficacy variables in your study?
2 Answers Accenture, Quintiles,
what is the prob plot in clinical domain
How is character variable converted into numeric variable and vice versa?
what is the purpose of _error_? : Sas programming