SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
anandrc
Obsidian | Level 7

Dear Community,

I have the following dataset. I would like to have my output dataset to be such a way that the unique observations(location) should become my columns and require a count column to suggest the no of values.  Appreciate your inputs.

 

ID Location
101 UK
101 France
101 Other
102 UK
102 Spain
103 Other
104 UK
104 Other
105 Other

 

I want the dataset to look like

 

ID UK France Spain Other Count
101 Y Y   Y 3
102 Y   Y   2
103       Y 1
104 Y     Y 2
105       Y 1
1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Only if ID is character (it is not in the sample data that I posted). 

 

Otherwise do something like this

 

data have;
input ID $ Location $;
datalines;
101 UK     
101 France 
101 Other  
102 UK     
102 Spain  
103 Other  
104 UK     
104 Other  
105 Other  
;

proc transpose data = have out = temp(drop = _:);
    by ID;
    id Location;
    var Location;
run;

data want;
   set temp;
   array a UK -- Spain;
   count = 0;
   do over a;
      a = ifc(a ne '', 'Y', a);
      if a = 'Y' then count + 1;
   end;
run;

View solution in original post

5 REPLIES 5
PeterClemmensen
Tourmaline | Level 20

Try this

 

data have;
input ID Location $;
datalines;
101 UK     
101 France 
101 Other  
102 UK     
102 Spain  
103 Other  
104 UK     
104 Other  
105 Other  
;

proc transpose data = have out = temp(drop = _:);
    by ID;
    id Location;
    var Location;
run;


data want;
   set temp;
   array a _character_;
   count = 0;
   do over a;
      a = ifc(a ne '', 'Y', a);
      if a = 'Y' then count + 1;
   end;
run;
anandrc
Obsidian | Level 7

Thanks for your input.

 

However, ID column also gets replaced with "Y".

ID UK France Spain Other Count
Y Y Y   Y 3
Y Y   Y   2
Y       Y 1
Y Y     Y 2
Y       Y 1
PeterClemmensen
Tourmaline | Level 20

Only if ID is character (it is not in the sample data that I posted). 

 

Otherwise do something like this

 

data have;
input ID $ Location $;
datalines;
101 UK     
101 France 
101 Other  
102 UK     
102 Spain  
103 Other  
104 UK     
104 Other  
105 Other  
;

proc transpose data = have out = temp(drop = _:);
    by ID;
    id Location;
    var Location;
run;

data want;
   set temp;
   array a UK -- Spain;
   count = 0;
   do over a;
      a = ifc(a ne '', 'Y', a);
      if a = 'Y' then count + 1;
   end;
run;
anandrc
Obsidian | Level 7

Thanks for your suggetion.

 

Except for ID variable, how do I rename the all the transposed location variables with prefix m_? 

For example, in my final dataset i want

 

ID m_UK m_France m_Spain m_Other
PeterClemmensen
Tourmaline | Level 20

Use the prefix= option in Proc Transpose like this

 

data have;
input ID $ Location $;
datalines;
101 UK     
101 France 
101 Other  
102 UK     
102 Spain  
103 Other  
104 UK     
104 Other  
105 Other  
;

proc transpose data = have out = temp(drop = _:) prefix = m_;
    by ID;
    id Location;
    var Location;
run;

data want;
   set temp;
   array a m_:;
   count = 0;
   do over a;
      a = ifc(a ne '', 'Y', a);
      if a = 'Y' then count + 1;
   end;
run;

sas-innovate-white.png

Join us for our biggest event of the year!

Four days of inspiring keynotes, product reveals, hands-on learning opportunities, deep-dive demos, and peer-led breakouts. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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