Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I create a categorical variable using a variables percentage?

categorical create PERCENTAGE
0
10 Posted

How do I create a categorical variable using a variables percentage?

0
10

You can use Proc Freq to generate a variable called PERCENT, merge it back to your original data, and then create a categorical variable using variable PERCENT. proc freq data=ye.class; table age/out=agefreq(keep=age PERCENT); run; proc sort data=ye.class; by age; proc sort data=agefreq; by age; data all; merge ye.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123