我有一个这样的数据集
data have;
input ID Label;
datalines;
Factor_1 Assets
Factor_2 Liabilities
Factor_3 Bonds
;
run;
我正在寻找一个新的数据集来适应因子转换,我需要更新我的字典
data want;
input ID Label;
datalines;
Factor_1_log Assets_log
Factor_1_sq Assets_sq
Factor_2_log Liabilities_log
Factor_2_sq liabilities_sq
;
run;
到目前为止我已经尝试过了
data want;
set have;
by ID;
if first.ID then do;
output;
ID = ID||_log;
output;
ID = ID||_sq;
output;
end;
run;
但无济于事,有没有办法扩展我的列表并附加正确的短语?