Sure. For example, a dataset with two variables, age and income, with 100 observations. DATA Example;
INPUT age income;
DATALINES;
22 1000
23 1200
…
; I want to print the 20 observations with highest values, in this example highest, 2 outputs once for age and then for income, each time with the 20 highest values in each. Hope this makes it clear, and thanks.
... View more