What is difference between (a-z) and (a--z)
Answer Posted / lucyl
data k;
input a1 a2 a4 a3;
datalines;
1 2 3 4
5 6 7 8
;
run;
proc print data=k;
var a1-a3;
run;
proc print data=k;
var a1--a3;
run;
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
what are some differences between proc summary and proc means? : Sas programming
Explain the purpose of retain statement.
How do dates work in SAS data?
explain what is factor analysis? : Sas-administrator
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
is data integration and etl programming is same? : Sas-di
explain the key concept of sas? : Sas-administrator
Give some ways by which you can define the variables to produce the summary report (using proc report)?
what is ae onset date n what is RDS
Describe a time when you were really stuck on a problem and how you solved it?
Mention what is SAS data set?
Explain how you can debug and test your SAS program?
Mention how to limit decimal places for the variable using proc means?
how the sas basic syntax style described? : Sas-administrator
In ARRAY processing, what does the DIM function do?