Name statements that are execution only.
Answers were Sorted based on User's Feedback
Answer / yuva
wen we r using proc sql tat time
quit; is execution statement
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / vanna.mallikarjunareddy
infile,input,sum statament etc.
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / srilatha
there many execution statements,some of them are
DATA
INPUT
CARDS
INFILE
WHERE
LABEL
SELECT
INFORMAT
FORMAT and the list goes.
| Is This Answer Correct ? | 1 Yes | 6 No |
What are the Aggregate functions in SQL ?
what is null hypothesis? why do you consider that?
0 Answers Accenture, Quintiles,
How long can a macro variable be? A token? : sas-macro
how to remove the duplicates by proc sql?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
One way of creating a new variable in Macros is by % Let....What is the other way..?
How the Excel file enter into the SAS environment without Code of Infile & Import procs,if i have no file Conversion?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.
What are the implications?
How do you use the do loop if you don’t know how many times you should execute the do loop?
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;