I am trying to create a distance matrix with the following piece of code proc distance data=sample shape=SQR out=Dist method=Euclid ; var interval(a2--a6 / std=Std); id a1; run; Although I am getting the output but all the variable names its taking from a1 have an underscore before it, for example a1 has values 1,2 ,3 ,4 ,5 ....and so, and in the distance matrix the variable names become _1, _2, _3, _4, _5... and so on. Could anybody please tell me the reason and guide me the way to remove the same. Thanks in advance !
... View more