简体   繁体   中英

SAS proc tabulate questions

My dataset looks like this:

 ID Var1    Var2    Var3
 A    1      0       1
 B    0      0       1
 B    1      1       0
 A    0      0       0
 A    1      1       1

My expected output will be:

    ID  Var1    Var2    Var3
    A   2        1       3
    B   1        1       1

Can someone help with this?

I've not access to SAS right now but try the following:-

proc tabulate data = in;
  class id;
  var var:;
  table id, sum=''*(var1 var2 var3);
run;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM