I found this paper in SAS, which includes (on the first page and some other parts) the following line of code:
if trt1pn > .z then...
I was wondering what the purpose of this is. I have never seen the expression ".z" before. I though (and some of my colleagues thought the same way), it was a typo. But you can do
data kk;
a = .z;
b = .b;
run;
and you get a variable equal to "Z", and a variable b - "B".
Where is this discussed in SAS manuals? What does it mean? Why is it used in paper in this way?
source
share