各位高人: 求助下列问题,请高人分析什么原因。 谢谢!!!!
我的数据集 s 中有几个变量(数据型)需要更换名称,运行了下列几个程序都换不了,其他的变量都可以换。为什么会出现这种情况?
data w;set pl3.s ;rename xh=ta;run;
data w;set pl3.s (rename=(xh=ta));run;
data w1 (rename=(xh=ta));set pl3.s ;run;
请注明:姓名-公司-职位
以便审核进群资格,未注明则拒绝
Pls help to check what log has intended to tell u.
what is the data type of xh and ta?
It should not a difficult problem
谢谢 bioman82 回帖帮助!!
我才发现真的闹了个笑话! 其实已经更名过来了,原名字没有消除存放在labels中,打开数据集时,默认的是labels. 所以因为没有更名过来,将labels转换到names就看到了.