BookmarkSubscribeRSS Feed
RandyStan
Fluorite | Level 6
Dear All I want to construct equal width binning for at least 10 variables. So for each variable I calculate the MIN and the MAX and then to find the equal widths (EW) I do (Max - Min)/10. To create the bins (I do not have Proc HPBIN) can I do the following Proc format ; value Bins MIN LE Var_A < (EW+ MIN) = '1' (EW+ MIN) LE VAR_A < (2*(EW) + MIN) = '2' ; and so on. If not, is there a better way to construct equal width bins? Randy
3 REPLIES 3
Norman21
Lapis Lazuli | Level 10

Some methods are given here:

 

https://blogs.sas.com/content/iml/2019/08/07/essential-guide-binning-sas.html

Norman.
SAS 9.4 (TS1M6) X64_10PRO WIN 10.0.17763 Workstation

ChrisNZ
Tourmaline | Level 20

You method does not guarantee equal populations. proc rank is the most used method for your purpose.

Ksharp
Super User

Here some code could help.

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1848 views
  • 0 likes
  • 4 in conversation