Name statements that are execution only?
Answers were Sorted based on User's Feedback
abort,delete,replace,select,set......etc....these are
executable statements in data step
| Is This Answer Correct ? | 6 Yes | 0 No |
keep and drop are data set options as well as statements also.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / kk
Abort, Infile, Input,do,if,merge,put, replace,select,etc...
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dupe
Data set option :
Data new(keep=age race gender);
set old;
run;
Data set statemnet:
Data new;
set old;
drop age race and gender;
run;
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / chiranjeevi
Mainly two statements are used in execution of the dataset i.e
1)Global statements
2)Localstatements
The following are the Global statements
1)By statement
2)label statement
3)where statement
Local statement
1)set
2)merge
3)update
4)control
5)length
6)array e.tc..,
| Is This Answer Correct ? | 1 Yes | 2 No |
The below code we are using for creating more than one macro variables in proc sql using into clause. How we can use same code to create macro variables vara, varb, varc instead of var1, var2, var3.? proc sql noprint; select count(distinct(patient)) into :var1 - :var3 from dataset1 group by trtreg1c ; quit;
What r all the reporting procedures...?
What are the data types that sas contain?
Which are the statements whose placement in the data step is critical?
explain the difference between proc means and proc summary?
what is hash files in sas and why we are using this one in sas?
how to assign a macro value to a variable?
Where do the database management systems store data and how do u import them.
How will you assign all the variables of an dataset into a macro variable separated by a space? For example if a dataset has variables A,B,C. Assign them to a macro variable X as X=A B C
what type of reports you are generating in your company...???
2 Answers GSK GlaxoSmithKline,
Explain data_null_?
what is treatment emergent events and treatment emregent adverse event