I found this paper on SAS that 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 it can be. I had never seen the ".z" expression before. I though (and some colleagues of mine thought the same) it was a typo. But you can do
data kk;
a = .z;
b = .b;
run;
and you get variable a equal to "Z" and variable b equal to "B".
Where in the SAS manuals is this discussed? What can it mean? Why is it used in the paper in such way?