In PROC PRINT, can you print only variables that begin with
the letter “A”?
Answer Posted / hsong001
Use the idea of variable list (varlist) wildcard :
e.g.,
proc print data=xxx ;
var A: ;
run ;
This will list all variables start with letter A.
| Is This Answer Correct ? | 16 Yes | 6 No |
Post New Answer View All Answers
What is the use of the %include statement?
For clinical entire study how many tables will create approx?
what is ae onset date n what is RDS
Differentiate between sas functions and sas procedures.
What is the difference between %local and %global? : sas-macro
Tell e how how dealt with..
where to use sas business intelligence? : Sas-bi
How do you use the do loop if you don’t know how many times you should execute the do loop?
What is the maximum length of the macro variable? : sas-macro
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
Differentiate between ceil and floor functions.
what is null hypothesis? why do you consider that?
Differentiate between proc means and proc summary.
What is the use of divide function?
I have a dataset concat having variable a b & c. How to rename a b to e & f?