In PROC PRINT, can you print only variables that begin with
the letter “A”?
Answer Posted / a
proc print data=;
where name like 'A%';
run;
Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Mention what is SAS data set?
how does sas handle missing values in a merge? : Sas programming
What is the difference between INPUT and INFILE ?
What are the scrubbing procedures in sas?
Give some examples where proc report’s defaults are different than proc print’s defaults?
What are the implications?
: and & modifiers.
What does the trace option do?
Why and when do you use proc sql?
Name any two sas spawners? : sas-grid-administration
What are the uses of sas?
What are the difference between the sas data step and sas procs?
Do you know the features of sas?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
Enlist the syntax rules followed in sas statements.