BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
podarum
Quartz | Level 8

I know the title line is confusing, but here's what I need.  I have a Variable 1 that has a whole bunch of provinces.  But if a province = A then I want 3 more provinces to also = a... still confused.. see below:

HAVE:

Prov  Data

A        12

B        11

C        19

D        14

I want 3 new Prov's (E, F and G) that now only adopt the values from C:

WANT:

Prov   Data

A        12

B        11

C        19

D        14

E        19

F        19

G        19;

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

A little more brief.

data new_prov;
set prov;

/* retain original provs */
output;

/* add some more provs based on current one if it matches the pattern */
if prov="C" then do;
  do prov="E", "F","G";
   output;
  end;
run;

Ksharp

View solution in original post

2 REPLIES 2
Sebastian
Calcite | Level 5

Hello,

Consider using something like the following code:

data new_prov;
set prov;

/* retain original provs */
output;

/* add some more provs based on current one if it matches the pattern */
if prov="C" then
  do;
   prov="E";
   output;
   prov="F";
   output;
   prov="G";
   output;
  end;
run;


It's probably not perfect but I hope it can give you some idea.

Best regards,
Sebastian
Ksharp
Super User

A little more brief.

data new_prov;
set prov;

/* retain original provs */
output;

/* add some more provs based on current one if it matches the pattern */
if prov="C" then do;
  do prov="E", "F","G";
   output;
  end;
run;

Ksharp

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 654 views
  • 0 likes
  • 3 in conversation