BookmarkSubscribeRSS Feed
koya
Fluorite | Level 6

?my data:

accname

=======

abc

abc

xyz

abc

def

xyz

def

desired output:

accname         uniqid

=======        =====

abc                    1

abc                    1

xyz                    2

abc                    1

def                     3

xyz                    1

def                     3

1 REPLY 1
mohamed_zaki
Barite | Level 11

proc sort data=have;

by accname;

run;

data want;

set have;

by accname;

retain order 0;

if first.accname then order=order+1;

run;

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 26056 views
  • 11 likes
  • 2 in conversation