when we have a charecter variable which has values like shown below:
0,1,2,3,4, MISSING(word)
HOW DOES IT SORT??????
i am getting the followwing order:
0
1
2
3
4
MISSING
Is there any way we can do :
MISSING
0
1
2
3
4
Thanks
You can specify a COLLATING SEQUENCE in proc sort that would do that. But you will have to make it.
Or a translation table Proc Trantab gets you started.
Personally, I wouldn't have made them character if I wan'ted them to sort that way as Missing, as a numeric, comes first, especially if all the values concerned except MISSING are number values. Then us a FORMAT to display the text if that's important.
What technique are you using to perform the sort? PROC SORT? PROC SQL? Something else? What platform are you running SAS on?
I was trying to acheive this in PROC REPORT...
Thanks
The quickest way would be to recode the variable to numeric.
You can specify a COLLATING SEQUENCE in proc sort that would do that. But you will have to make it.
Or a translation table Proc Trantab gets you started.
Personally, I wouldn't have made them character if I wan'ted them to sort that way as Missing, as a numeric, comes first, especially if all the values concerned except MISSING are number values. Then us a FORMAT to display the text if that's important.
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!
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.