SAS中的虚拟变量

时间:2014-01-30 15:34:05

标签: sas

假设我们有一些数据集people,其具有4级(1,2,3,4)的分类变量income。我们如何在SAS中编写代码?它会是:

data people;
set people;
if income=1 then income1=1;
else if income=2 then income2=1
else if income  =3 then income3=1;
run;

换句话说,这将为四个级别创建三个虚拟变量。这是对的吗?

5 个答案:

答案 0 :(得分:6)

一种更灵活的方法是使用数组。

data people;
set people;
array incomes income1-income4;
do _t = 1 to dim(incomes);
  if income=_t then income[_t] = 1;
  else if not missing(income) then income[_t]=0;
  else income[_t]=.;
end;
run;

答案 1 :(得分:1)

我在下面修改了你的代码。这将给出3个虚拟编码变量。 income = 4将是您的参考代码。

data people_dummy;
         set people;
         if income=1 then income1=1 ; else income1=0;
         if income=2 then income2=1 ; else income2=0; 
         if income=3 then income3=1 ; else income3=0;
run;

答案 2 :(得分:1)

我会写一些更通用的东西。

%macro cat(indata, variable);
  proc sql noprint;
    select distinct &variable. into :mvals separated by '|'
    from &indata.;

    %let mdim=&sqlobs;
  quit;

  data &indata.;
    set &indata.;
    %do _i=1 %to &mdim.;
      %let _v = %scan(&mvals., &_i., |);
      if &variable. = &_v. then &variable.&_v. = 1; else &variable.&_v = 0;
    %end;
  run;
%mend;

%cat(people, income);

答案 3 :(得分:1)

你不需要写“别人”。以下也可以:

    income1_ind=(income1 eq 1);
    income2_ind=(income2 eq 2);

答案 4 :(得分:0)

代码: -

proc sql noprint;
 select distinct 'income' || strip(put(income,8.)) into :income_var    separated by ' '
 from people;
quit;

data people(rename = (in = income));
 set people(rename = (income = in));
 length &income_var. 8;
 array tmp_arr(*) income:;
 do i = 1 to dim(tmp_arr);
    if in eq i then tmp_arr(i) = 1;
    else tmp_arr(i) = 0;
 end;
 drop i;
run;

工作:以上SAS代码是动态的,适用于任意数量的收入变量级别,因为它会根据输入人员数据集中不同级别的数量自动创建多个变量。

数据步骤将根据收入变量的值将各自的变量设置为值1,将其他变量设置为0。