What is the purpose of the trailing @? The @@? How would you
use them?
Answer Posted / imran syed
@@ is used when we have multiple observations per line of
raw data. It is used at the end of the INPUT statement. It
tells SAS to hold that line of data and continue to read
observations until it either runs out of data or reaches an
INPUT statement that does not end with a double trailing @.
When we use @ only without specifying n, SAS will hold that
line of data until it reaches either the end of the DATA
step or an INPUT statement that does not end with a trailing @.
Both are line-hold specifiers; the difference is how long
they hold a line of data for input. The trailing @ holds a
line of data for subsequent INPUT statements, but releases
that line of data when SAS returns to the top of the DATA
step to begin building the next observation. The double
trailing @ holds a line of data for subsequent INPUT
statements even when SAS starts building a new observation.
In both cases, the line of data is released if SAS reaches a
subsequent INPUT statement that does not contain a line-hold
specifier.
| Is This Answer Correct ? | 59 Yes | 3 No |
Post New Answer View All Answers
What do you know about sas data set?
describe how to adjust the performance of data integrator? : Sas-di
how sas deals with business intelligence? : Sas-bi
For what purpose would you use the RETAIN statement?
How to read an input file in sas?
Explain substr function?
Describe a time when you were really stuck on a problem and how you solved it?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
what are some differences between proc summary and proc means? : Sas programming
What’s the difference between var b1 – b3 and var b1 — b3?
how does sas handle missing values in assignment statements? : Sas programming
explain what is data set in sas? : Sas-administrator
what is the difference between unique key and primary key? : Sas-di
Explain by-group processing?
What is maximum number of rows and cols can be handled in SAS?