What is the purpose of the trailing @? The @@? How would you
use them?
Answer Posted / santhi swaroop
@ is the pointer input that will hold the point at a
specific point variables inthe data
@@ is the on that may be useful to read the singleline of
raw data into multiple observations of the sas data set.
syn
data santhi;
infile path;
input var 1 2 3 4 @@;
run;
| Is This Answer Correct ? | 4 Yes | 12 No |
Post New Answer View All Answers
How would you identify a macro variable?
How is character variable converted into numeric variable and vice versa?
why is sas considered self-documenting? : Sas programming
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
How to convert a numeric variable to a character variable?
In sas, what are the areas that you are most interested in? : sas-grid-administration
Explain the difference between using drop = data set option in set and data statement?
What commands are used in the case of including or excluding any specific variables in the data set?
Explain proc sort?
explain the difference between proc means and proc summary?
How to create an external dataset with sas code?
How do you delete duplicate observations in sas?
Explain bmdp procedure?
For what purposes have you used sas macros? : sas-macro
What is the different between functions and PROCs that calculate the same simple descriptive statistics?