在SAS中将现有列分配给索引?

时间:2016-11-02 13:55:24

标签: formatting sas

我现在有一个表'id'列作为索引。但是,当我执行表的转置时,列丢失了。我想要的是'id'列成为转置表中的列标题。

这是我的预转置表的一个例子。

enter image description here

然后,当我使用代码

进行转置时会发生什么
proc transpose  data =  table
            out =  table_transpose;
run;

我的输出是:

enter image description here

1 个答案:

答案 0 :(得分:1)

id中的proc transpose语句执行此操作。有关详细信息,请参阅documentation

proc transpose  data =  table
            out =  table_transpose;
   id id;
run;