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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.