Date: Mon, 15 Mar 1999 18:08:02 +0000
Reply-To: kmself@ix.netcom.com
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: "Karsten M. Self" <kmself@IX.NETCOM.COM>
Organization: Self Analysis
Subject: Re: What does @; mean is sas script
Content-Type: text/plain; charset=us-ascii
milligan7601@my-dejanews.com wrote:
>
> Simple question, what does @; mean is sas script?
It depends. It would help if you posted the context.
'@' is usually a column pointer in an input statement. It indicates a
column position at which data are to be read from a raw (non-SAS)
dataset. It can also be used in output. Typical example:
data foo;
infile cards;
input @1 x @4y @8 z;
cards;
12 4567 890
;
....results in X=12, Y=4567, Z=890.
--
Karsten M. Self (kmself@ix.netcom.com)
What part of "Gestalt" don't you understand?
Welchen Teil von "Gestalt" verstehen Sie nicht?
web: http://www.netcom.com/~kmself
SAS/Linux: http://www.netcom.com/~kmself/SAS/SAS4Linux.html
10:03am up 5:25, 1 user, load average: 0.03, 0.12, 0.16