BookmarkSubscribeRSS Feed
brophymj
Quartz | Level 8


Is there an easy way of creating band in SAS? I have a dataset where I would like to create bands for certain factors i.e. age etc. based on the volumn of data.

3 REPLIES 3
LinusH
Tourmaline | Level 20

Is "band" a statistical term? If so, post this in Statistical Procedures forum instead to target your audience.

Data never sleeps
brophymj
Quartz | Level 8

Not really. I just want to create something like the following:

Age  Band

24     A.18-25

44     C.25-44

23     ...

65     ...

99

without having to define each level manually

So, given the width, lower and upper bounds i can create bands automatically

user24feb
Barite | Level 11

Proc Format should work:


Data A;
  Input Age @@;
  Datalines;
  24 44 23 65 99 
  ;
Run;

Proc Format;
  Value AgeFormat 18-25  = "A"
                               25-44  = "C"
                               44-High = "Old" ;
Run;

Data B;
  Set A;
  Group=Put(Age,AgeFormat.);
Run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 2715 views
  • 0 likes
  • 3 in conversation