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
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 save with the early bird rate—just $795!
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.