Hello
I am trying to transpose a wide data set to a long dataset and found some sas code that uses an array; I tested it out using three variables and it worked well. The issue I have is that the zip codes are not all consecutive, for example, I have 60601 to 60620, but then it jumps to 60625 to 60640; most are consecutive but several are not. How do I specify that in the array?
Thank you!
data WORK.TRANSPOSE; infile datalines dsd truncover; input Date:DATE9. Percent:32. Percent1:32. Percent2:32.; format Date DATE9.; datalines; 01JAN2020 16.667 0 0 02JAN2020 0 0 0 03JAN2020 14.286 0 0 04JAN2020 0 0 0 05JAN2020 0 0 0 06JAN2020 0 0 0 07JAN2020 0 0 0 08JAN2020 0 0 0 09JAN2020 20 0 0 10JAN2020 0 0 0 11JAN2020 0 0 0 12JAN2020 0 0 0 13JAN2020 0 0 0 14JAN2020 0 0 0 15JAN2020 0 0 0 16JAN2020 25 0 0 17JAN2020 0 0 0 18JAN2020 0 0 0 19JAN2020 0 0 0 20JAN2020 0 0 0 ;;;; data Transpose2; set transpose; array apctcli(60601:60603) Percent Percent1 Percent2; do zip = 60601 to 60603; pctcli = apctcli(zip); output; END; DROP Percent Percent1 Percent2; run;
Thanks for the reply. You are correct, I am relying on location, but in this case, Percent will always be 60601, Percent1 will always be 60602 and so on and they will always be in the same location. It is based on a data dictionary. Unfortunately, that is how the data is downloaded and sent to me. Actually, there are five values associated with each zip code and numbered the same way. For example, there is Percent1, Count1, Expected1, and all are associated with 60602. It's annoying, but it's what I have to work with. If you have a more efficient way to transpose I am definitely open to that! Thanks.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.