Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
SAS MEANS Procedure
What is the SAS MEANS Procedure?
✍: FYIcenter.com
MEANS Procedure performs a simple statistic task on
one or more variables/columns in a given data set.
MEANS Procedure calculates and prints 4 statistic values: Mean,
Standard Deviation, Minimum and Maximum.
Here is a simple example of a MEANS Procedure:
DATA Sample;
Weight = 0;
DO Id = 1 to 6;
Weight = RAND('UNIFORM', 60, 90);
OUTPUT;
END;
PROC MEANS DATA=Sample; /* "Sample" specifies the data set to use */
VAR Weight; /* "Weight" specifies column to be analyzed */
If you run the above SAS program, you will get the following table in the results:
MEANS PROCEDURE
Variable: Weight
N Mean Std. Deviation Minimum Maximum
6 75.9597368 9.8799390 62.2546595 88.8529917
2021-06-19, ∼3033🔥, 0💬
Popular Posts:
What is a PowerPoint Template (.potx) File? What is the difference between .potx and .pptx files? A ...
How to install Microsoft Teams desktop version on Windows 7? I am tired of using Microsoft Teams Web...
Why am I getting the "Spawn Failed: Server at http://127.0.0.1:47353/u ser/fyicenter/didn't respond ...
How to open a Web Archive (.mht or .mhtml) file correctly in Firefox browser? I converted a word doc...
Why am I getting the "Spawn Failed: Server at http://127.0.0.1:47353/u ser/fyicenter/didn't respond ...