Guest User

Untitled

a guest
Jan 20th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. data want;
  2. set have;
  3. array xx xx11--xx44;
  4. do _t = 1 to dim(xx);
  5. x=xx[_t];
  6. group = substr(vname(xx[_t]),3,1);
  7. time = substr(vname(xx[_t]),4,1);
  8. output;
  9. end;
  10. run;
Add Comment
Please, Sign In to add comment