I have a dataset in the following form, with the input variables Var 1 to Var 3 and required output variable:
Var1 Var2 Var3 OutputVar
a 1 p 1
a 1 q 2
a 2 r 1
b 1 m 1
b 2 n 1
b 2 o 2
For each Var1, the OutputVar needs to be the cumulative frequency of Var 3 grouped by Var2. I need all the variables in the final output data.
Any suggestions please?
Thanks.
VD
Please try the below code
data have;
input Var1$ Var2 Var3$;
datalines;
a 1 p
a 1 q
a 2 r
b 1 m
b 2 n
b 2 o
;
run;
proc sort data=have;
by var1 var2;
run;
data want;
set have;
by var1 var2;
retain outputvar;
if first.var2 then outputvar=1;
else outputvar+1;
run;
Thanks,
Jag
Please try the below code
data have;
input Var1$ Var2 Var3$;
datalines;
a 1 p
a 1 q
a 2 r
b 1 m
b 2 n
b 2 o
;
run;
proc sort data=have;
by var1 var2;
run;
data want;
set have;
by var1 var2;
retain outputvar;
if first.var2 then outputvar=1;
else outputvar+1;
run;
Thanks,
Jag
Thank you, Jag!
It works well.
VD
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.