BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
wcw
Calcite | Level 5 wcw
Calcite | Level 5

I need to fill in numeric (integer) values for a series of ID variables using the (1st and only) value for the day down for the next 2 days (say  2 here, but I actually need 42). The values will all be the same for each variable. See example and data below. The DAY variable is also numeric. The ID variable names all follow the same pattern (ID1 - IDn, I've about 50).

Thanks so much.

 

HAVE        
DAY ID1 ID2 ID3 ID4
1 4 . . .
2 . . . .
3 . . . .
4 . . . .
5 . 2 . .
6 . . 2 .
7 . . . .
8 . . . .
9 . . . 2
10 . . . .
11 . . . .
12 . . . .
         
         
         
         
WANT        
DAY ID1 ID2 ID3 ID4
1 4 . . .
2 4 . . .
3 4   . .
4 . . . .
5 . 2 . .
6 . 2 2 .
7 . 2 2 .
8 . . 2 .
9 . . . 2
10 . . . 2
11 . . . 2
12 . . . .

 

data have;

input day id1 - id4;

cards;

 

1 4 . . .

2 . . . .

3 . . . .

4 . . . .

5 . 2 . .

6 . . 2 .

7 . . . .

8 . . . .

9 . . . 2

10 . . . .

11 . . . .

12 . . . .

;

run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
Opal | Level 21

Love the problem.  Here's a way.

 

data temp;

set have;

if n(of id: ) = 0 then output;

else do day=day to day + 2;

   output;

end;

run;

 

proc sort data=temp;

   by day;

run;

 

data want;

update temp (obs=0) temp;

by day;

run;

 

You might end up changing "day + 2" to "day + 42".

View solution in original post

3 REPLIES 3
Astounding
Opal | Level 21

Love the problem.  Here's a way.

 

data temp;

set have;

if n(of id: ) = 0 then output;

else do day=day to day + 2;

   output;

end;

run;

 

proc sort data=temp;

   by day;

run;

 

data want;

update temp (obs=0) temp;

by day;

run;

 

You might end up changing "day + 2" to "day + 42".

wcw
Calcite | Level 5 wcw
Calcite | Level 5

Wow, that is exquisite, you are indeed astounding, thank you so much!Smiley Happy

novinosrin
Tourmaline | Level 20
data have;

input day id1 - id4;

cards;
1 4 . . .
2 . . . .
3 . . . .
4 . . . .
5 . 2 . .
6 . . 2 .
7 . . . .
8 . . . .
9 . . . 2
10 . . . .
11 . . . .
12 . . . .
;


run;

data _null_;
if _n_=1 then do;
 dcl hash H (dataset:'have',ordered:'y') ;
   h.definekey  ('day') ;
   h.definedata ('day',"id1",'id2','id3','id4') ;
   h.definedone () ;
end;
set have end=last;
array t(*) id:;
if n(of id: )>0 then do;
do i=1 to dim(t);
if not missing(t(i)) then do;
_k=t(i);
do day=day to day + 2;
h.find();
t(I)=_k;
h.replace();
end;
end;
end;
end;
if last then h.output(dataset:'want');
run;

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 658 views
  • 2 likes
  • 3 in conversation