BookmarkSubscribeRSS Feed
ybz12003
Rhodochrosite | Level 12

Hello:

 

I would like to use PROC SQL according to the following data steps.  I am thinking of using "update' statement and "Case...end".  However, I don't know how to work in the multiple variables. 

 

data dataout.recat1;

      set dataout.test;

      if age in (1,2,3,4,5) then age=1;

      if marital in (2, 4) then marital=2;

      if income in (1,2,3) then income=1;

run;

 

 

3 REPLIES 3
LaurieF
Barite | Level 11

This is another difficult problem to solve accurately without having the source data available to test it. However this code wll work. Whether it's what you want is another thing:

proc sql;
create table dataout.recat1 as
select ifn(age in(1, 2, 3, 4, 5), 1, .) as age,
ifn(marital in(2, 4), 2, .) as marital,
ifn(income in(1, 2, 3), 1, .) as income
from dataout.test;
quit;

The first ifn function tests age to see if it's 1 - 5; if it is, age is reset to 1, but if not it's set to missing. The same pattern is in the next two lines. I use ifn or ifc if there are only going to be two possibilities; if there are more I use case/when/else.

 

If you want other variables in the output dataset, you need to specify them.

 

Note that you would only use update if you were replacing the dataset; in your datastep code you specify a different dataset.

ybz12003
Rhodochrosite | Level 12

I don't like set extra missing "." for 1-5 cause there are missing "." in original data.  It will cause the confusion.

LaurieF
Barite | Level 11
That's why I pointed out the lack of data, and specification. Can you attach your source data and how you want the output to look? It's really hard otherwise.

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 594 views
  • 0 likes
  • 2 in conversation