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
PaigeMiller
Diamond | Level 26

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

 

I think you want

 

decision_pt=0;

 

--
Paige Miller

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

Discussion stats
  • 5 replies
  • 754 views
  • 0 likes
  • 2 in conversation