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

Hi Experts,

Lets say i have this table:

customera1a2a3a4a5a6
qqq300030003200305035003100
qqq300031003050305030503100

 

I want to create new column , an indicator that return 1 if :

1. a1=a2=a3=a4=a5  or  the difference between (a1 to a6 )is no more then 5% difference from the minimum number.

in this example , in row numer 1,2  the min number is 3000 ,soo the diff is +-150

2. else 0

customera1a2a3a4a5a6indicator
qqq3000300032003050350031000
qqq3000310030503050305031001
qqq4000400040004000400040001

 

Any ideas?

Best Regards

1 ACCEPTED SOLUTION

Accepted Solutions
ed_sas_member
Meteorite | Level 14

Hi @jony123 

You can try this:

-> you can adapt the allowed percentage of difference from the minimum value in the %let statement

-> in the array, all variable beginning with an 'a' are referenced. You can specify a1-a6 if it makes more sense.

Best,

%let alpha = .05;

data want;
	set have;
	array _a(*) a:;
	flag=1;
	do i=1 to dim(_a);
		if min(of _a(*))*(1-&alpha) > _a(i) or min(of _a(*))*(1+&alpha) < _a(i)then flag=0;
	end;
	drop i;
run;

View solution in original post

7 REPLIES 7
jony123
Fluorite | Level 6

Hi, Yes

customera1a2a3a4a5a6indicatordocument
qqq30003000320030503500310006
qqq30003100305030503050310017
qqq40004000400040004000400018

 

I add it to the example

 

Thanks for you help

Patrick
Opal | Level 21

May be I'm missing to understand part of the problem - or could it be as simple as below.

data want;
  set have;
  array a_vars {*} a1-a6;
  array minmax {2} 8 _temporary_;
  minmax[1]=min(of a_vars[*]);
  minmax[2]=max(of a_vars[*]);
  indicator= ( abs((minmax[2]-minmax[1])/minmax[1])>0.05 );
run;

 

Kurt_Bremser
Super User

I asked because this allows transposing to the better long format, where such issues can be coded without regard for the number of variables, and without needing dynamic code if the number of variables is not fixed:

data have;
infile datalines dlm='09'x;
input customer $ a1 a2 a3 a4 a5 a6 document;
datalines;
qqq	3000	3000	3200	3050	3500	3100	6
qqq	3000	3100	3050	3050	3050	3100	7
qqq	4000	4000	4000	4000	4000	4000	8
;

proc transpose data=have out=long (rename=(col1=value _name_=a));
by customer document;
var a:;
run;

proc sql;
create table want as
  select
    customer,
    document,
    case
      when max(value) le min(value) * 1.05
      /* this also covers equality of all values */
      then 1
      else 0
    end as indicator
  from long
  group by customer, document
;
quit;
ed_sas_member
Meteorite | Level 14

Hi @jony123 

You can try this:

-> you can adapt the allowed percentage of difference from the minimum value in the %let statement

-> in the array, all variable beginning with an 'a' are referenced. You can specify a1-a6 if it makes more sense.

Best,

%let alpha = .05;

data want;
	set have;
	array _a(*) a:;
	flag=1;
	do i=1 to dim(_a);
		if min(of _a(*))*(1-&alpha) > _a(i) or min(of _a(*))*(1+&alpha) < _a(i)then flag=0;
	end;
	drop i;
run;
jony123
Fluorite | Level 6

Thanks works perfect

Devender_Palsa
Calcite | Level 5

@jony123 

data ps;
input customer a1 a2 a3 a4 a5 a6;
datalines;
qqq 3000 3000 3200 3050 3500 3100
qqq 3000 3100 3050 3050 3050 3100
;

proc sql;
select
CASE WHEN a1 = a2 = a3 = a4 = a5 =a6 THEN '1' ELSE '0'
END AS indicator
from ps;
quit;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 7 replies
  • 796 views
  • 1 like
  • 5 in conversation