Quantcast
Channel: ListenData
Viewing all articles
Browse latest Browse all 425

SAS : Reverse Order of Data

$
0
0
This tutorial explains how to reverse order of data in SAS.
Reverse order of data

Create Sample Data
data temp;
input var1 @@;
cards;
2 9 6 4 3 8
;
run;

Method I : With Sorting
data temp2;
set temp;
i = _N_;
run;
proc sort data = temp2;
by descending i;
run;
Method II : Without Sorting
data temp2;
do i = nobs to 1 by -1;
set temp nobs = nobs point=i;
output;
end;
stop;
run;

  1. The POINT= option allows us to point to and select a given observation. 
  2. The NOBS= creates and names a temporary variable whose value is usually the total number of observations in the input data set or data sets. If more than one data set is listed in the SET statement, NOBS= the total number of observations in the data sets that are listed.


Viewing all articles
Browse latest Browse all 425

Trending Articles