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
how many types of prompts are there? : Sas-bi
For what purpose would you use the RETAIN statement?
what is snowflake schema? : Sas-di
name some data transformation used in sas di? : Sas-di
What are the advantages of using sas?
What are the implications?
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
what are the considerations when picking a SAS/STAT procedure?
What versions of SAS have you used (on which platforms)?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
What is the length assigned to the target variable by the scan function?
What are the functions which are used for character handling functions?
What are the limitations for memory allocation for SAS variables
Differentiate between format and informat? : sas-grid-administration
What is the basic structure of the SAS base program?