BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Ronein
Meteorite | Level 14

Hello

I have a data set with 2 string columns.

I want to create a new column called Ind that will get value 2 or 1 or 0.

IF column W doesn't contain  any argument of column X then value 0.

If value of W contain at least one argument from column X  but W not equal to X then value 1.

IF W=X  then value 2.

What is the way to do it please?

Please note that  arguments are determined by delimiter comma

 

One more condition is that if column X =Column W


Data have;
input X $ w $;
cards;
11,22 33
11,22 44
11,22 11
11,22 22
11,22 11,22,66
;
run; 
1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

Here is my code. I did not program the case where x=w, you did not give us an example in the data set, and I believe you can modify the code to handle this case without our help.

 

data want;
    set have;
    n_words_x=countw(x,',');
    n_words_w=countw(w,',');
    ind=0;
    do i=1 to n_words_x;
        do j=1 to n_words_w;
            if scan(x,i,',')=scan(w,j,',') then ind=1;
            leave;
        end;
    end;
    drop i j n_words:;
run;

 

--
Paige Miller

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

Please test your code before posting. Please be sure it produces the desired data set. Testing your code is a good thing to do, and in my opinion, it is mandatory. Please don't make us test it or correct it for you.

 

2024-01-17 05_52_39-SAS Studio — Mozilla Firefox.png

--
Paige Miller
Ronein
Meteorite | Level 14

Sorry,raw data is 


Data have;
input X $ w $;
cards;
11,22 33
11,22 44
11,22 11
11,22 22 
11,22 11,22,66
 ;
run;
PaigeMiller
Diamond | Level 26

Here is my code. I did not program the case where x=w, you did not give us an example in the data set, and I believe you can modify the code to handle this case without our help.

 

data want;
    set have;
    n_words_x=countw(x,',');
    n_words_w=countw(w,',');
    ind=0;
    do i=1 to n_words_x;
        do j=1 to n_words_w;
            if scan(x,i,',')=scan(w,j,',') then ind=1;
            leave;
        end;
    end;
    drop i j n_words:;
run;

 

--
Paige Miller
ballardw
Super User

Exactly what is the purpose of storing two or more values in a single variable? This violates principals of data normalization and generally leads to extremely hard to maintain code.

 

And for further consideration is a value of "11,22" considered equal to "22,11"? See how quickly poor data adds to possibly confusion?  By the time you get to 11,22,33 you have to consider "equality" of 11,33,22 22,33,11 22,11,33 33,11,22 33,22,11 .  And what about the entirely too likely entry of occasional spaces embedded in the values such as "11, 22"? Is that to be considered equal to "11,22"? (A basic use of the = operator will return false.)

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 4 replies
  • 417 views
  • 2 likes
  • 3 in conversation