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

Hello,

 

I have a 10,000 records data set. Using z-score I need to select and flag the records as follows:

 

1. Top 15% high $$ customers (z-score of the dollar_amt variable greater than +1)

2. Bottom 15% low $$ customers (z-score of the dollar_amt variable less than -1).

 

I need to know if there is a way to do this in SAS and how.

 

Regards,

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Yes, Proc stdize will create Z scores or you can manually calculate this via a data step or proc SQL step. 

View solution in original post

2 REPLIES 2
Reeza
Super User

Yes, Proc stdize will create Z scores or you can manually calculate this via a data step or proc SQL step. 

sasmaverick
Obsidian | Level 7

Hi Reeza,

 

Below is the code I am using

 

proc standard data=sample mean=0 std=1 out=sample_out;

var amount transaction;

run;

 

Would this give me the top 15% customer if I put the condition "amount>1" and bottom 15% if I put "amount<-1". This is the score calculated from the above step for amount. I see some conditions are not fulfilled and I get 0 observations. For example if I put transaction<-1

 

Thanks

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 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 15464 views
  • 2 likes
  • 2 in conversation