Suppose there are three districts: ag, du, and si. And the "count" variable indicates the number of people moving from a district from another district.
origin destination count
ag ag 0
ag du 41
ag si 13
du ag 3
du du 0
du si 79
si ag 7
si du 6
si si 0
And I have to convert the above data to a matrix form as follows:
0 41 13
3 0 79
7 6 0
How do I have to write the code to do that? Thanks.
Use transpose :
data OD;
input origin $ destination $ count;
datalines;
ag ag 0
ag du 41
ag si 13
du ag 3
du du 0
du si 79
si ag 7
si du 6
si si 0
;
proc sort data=OD; by origin destination; run;
proc transpose data=OD out=ODmat(drop=_NAME_);
by origin;
var count;
id destination;
run;
proc print data=ODmat noobs; run;
PG
Use transpose :
data OD;
input origin $ destination $ count;
datalines;
ag ag 0
ag du 41
ag si 13
du ag 3
du du 0
du si 79
si ag 7
si du 6
si si 0
;
proc sort data=OD; by origin destination; run;
proc transpose data=OD out=ODmat(drop=_NAME_);
by origin;
var count;
id destination;
run;
proc print data=ODmat noobs; run;
PG
Thanks! It works!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.