I've dataset name called sales
I want sort data without using proc and first.var and last.var;
data tab;
input country;
cards;
1
3
2
5
6
1
5
4
;
run;
could you please help me out....
Maybe they just want a computer science guy who know data structure. not a sas or statististic guy.
This kind of question should be given to software developer . not data analysis.
data tab;
input country;
cards;
1
3
2
5
6
1
5
4
;
run;
data want;
set tab end=last;
array x{99999} _temporary_;
x{_n_}=country;
if last then do;
do i=1 to _n_;
do j=i+1 to _n_;
if x{i} gt x{j} then do;
temp=x{i};x{i}=x{j};x{j}=temp;
end;
end;
end;
do k=1 to _n_;
country=x{k};output;
end;
end;
keep country;
run;
What is the reason for not using proc sort?
it was one of the interview question that i was asked for..
You can produce sorted data with a hash object (probably the answer the interviewer wanted).
"
I want sort data without using proc and first.var and last.var;" - How will first/last help you sort anything?
Use one of the methods developed by experts over years = proc sort, order by. These are both efficient and simple, and all SAS programmers will be abel to understand your code easily.
Alternatively, get yourself and x86 assembler and write all your code using machine code.
Maybe they just want a computer science guy who know data structure. not a sas or statististic guy.
This kind of question should be given to software developer . not data analysis.
data tab;
input country;
cards;
1
3
2
5
6
1
5
4
;
run;
data want;
set tab end=last;
array x{99999} _temporary_;
x{_n_}=country;
if last then do;
do i=1 to _n_;
do j=i+1 to _n_;
if x{i} gt x{j} then do;
temp=x{i};x{i}=x{j};x{j}=temp;
end;
end;
end;
do k=1 to _n_;
country=x{k};output;
end;
end;
keep country;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.