BookmarkSubscribeRSS Feed
TiaK
Calcite | Level 5

 

I dont have any data but i have to give a sample code for how i would solve such a problem.

the problem is to Create a variable decision_pt  that sums the occurences of the following 

    1. age < 45
    2. state is “URBAN” or “HIGHLY URBAN”
    3. furniture >= 5
    4. premium = yes
    5. usage = “COMMERCIAL”
    6. male = 1
data a;
set a;
retain decision_pt = 0;
if age < 45 then decision_pt =decision_pt +1 ;
if state ="URBAN" or "HIGHLY URBAN" decision_pt =decision_pt +1 ;

am i on the right track?

5 REPLIES 5
PaigeMiller
Diamond | Level 26

You can't expect us here in SAS Communities to do your homework for you! You will not learn anything that way.

 

So here's my suggestion: you write some SAS code to do this, and if you can't get it to work, show us the code and the SASLOG, and someone here will know how to fix it.

--
Paige Miller
TiaK
Calcite | Level 5

i modified the question with my answer now. hope this helps.

PaigeMiller
Diamond | Level 26

Seems like this could produce the desired answer, once you clean up your syntax errors.

 

if state ="URBAN" or state="HIGHLY URBAN" then decision_pt =decision_pt +1 ;
--
Paige Miller
TiaK
Calcite | Level 5

Is adding retain important here?

PaigeMiller
Diamond | Level 26

RETAIN probably isn't needed here, and may have undesired effects.

 

I think you want

 

decision_pt=0;

 

--
Paige Miller
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
  • 5 replies
  • 1524 views
  • 0 likes
  • 2 in conversation