In PROC PRINT, can you print only variables that begin with
the letter “A”?
Answer Posted / henry
proc print data=sashelp.class;
var height weight;
where upcase(substr(name,1,1))='A';
run;
Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Explain why double trailing @@ is used in input statement?
What is the basic structure of a sas program?
what versions of sas have you used (on which platforms)? : Sas programming
Describe the ways in which you can create macro variables?
Enlist the syntax rules followed in sas statements.
What is the general format of function in sas? : sas-grid-administration
What are the different types of sas functions?
Explain what is data step?
What is by-group processing?
how do you want missing values handled? : Sas programming
What is connection profile? : sas-grid-administration
What are pdv and it functions?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
what type of graphs we will create(for 2+years candidates)?
What is the difference between reading data from an external file and reading data from an existing data set?