In PROC PRINT, can you print only variables that begin with
the letter “A”?
Answer Posted / parbhat517
PROC PRINT DATA = X;
WHERE SUBSTR(NAME,1,1) = 'A';
RUN;
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
: and & modifiers.
how do you want missing values handled? : Sas programming
what is star schema? : Sas-di
Explain the use of proc print and proc contents?
How do you connect the desktop application to metadata server? : sas-grid-administration
what is data governance? : Sas-di
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
Differentiate between ceil and floor functions.
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
why is sas considered self-documenting? : Sas programming
What is your favorite all time computer book? Why?
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.
Describe the ways in which you can create macro variables?
What is the purpose of _character_ and _numeric_?
Explain append procedure?