BookmarkSubscribeRSS Feed
blackraven
Fluorite | Level 6
Hi.

I want to do what seems to be something simple. Variable v2 should make an enumeration change when v1 changes. v1 need to come out in the unsorted way it is. How do I do this?

v1 v2
a 1
a 1
a 1
c 2
c 2
b 3
1 REPLY 1
SASKiwi
PROC Star
You could try something like this:

data new;
set old;
retain last_v1;
if last_v1 ne v1 then v2 +1;
last_v1 = v1;
run;

On the first row last_v1 will not be assigned so v2 is set to 1.

On row 4, where there is a change v1 will not equal last_v1 so 1 is added to v2.

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

Register now

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
  • 1002 views
  • 0 likes
  • 2 in conversation