|
Dear All:
I am using Proc Univariate and want the results to be displayed as follows:
Year 1999 Mean Median Min Max P1 P99 N Nmiss
Var A
Var B
Var C
.
.
.
Year 2000
Var A
Var B
Var C
.
.
.
The code that I am using is
Proc Univariate data = X noprint;
By Year;
var A B C .... ;
output out = Summary_Statistics
Mean = MeanA MeanB...
Median = MedianA MedianB ....
Min = ...
and so on
The output that I obtain is in one line for each year and that is not what I want..
Please help
|