Hi Team,
I have dataset with data this way
data dataset1;
input v1 v2;
cards;
10 12
12 21
23 22
22 45
33 24
; run;
And I am expecting the output which would diagonally compare and provides me the max value .. if diagonally value was not found then it should return the same value with the column v2 (33 24 seen below)
output:-
V1 V2
10 21
23 45
33 24
Any help on this is really appreciated..
Hi,
I don't understand your output.
Could you elaborate!
output:-
V1 V2
10 21
23 45
33 24
data have;
input v1 v2;
cards;
10 12
12 21
23 22
22 45
33 24
run;
data want (keep=v1 v2);
set have end=last;
x=lag(v1);
if mod(_n_,2)=0 then do; v1=x; output; end;
else if last then output;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.