Valid in: | Anywhere |
Category: | ODS: Output Control |
Default: | OFF |
Example: | Creating a Data Set with and without the MATCH_ALL Option |
Univariate.City_Pop_90.TestsForLocationThen the partial paths are as follows:
City_Pop_90.TestsForLocation TestsForLocation
"The UNIVARIATE Procedure"."CityPop_90"."Tests For Location"Then the partial label paths are as follows:
"CityPop_90"."Tests For Location" "Tests For Location"
Features: |
|
Other features: |
PROC UNIVARIATE |
Data set: | StatePop |
ods trace on / label;
proc univariate data=statepop mu0=3.5; var citypop_90 citypop_80; run;
ods trace off;
Moments
, BasicMeasures
, TestsForLocation
, Quantiles
, and ExtremeObs
. Notice that an output object has the same name and label, regardless
of which variable is analyzed. Therefore, you can select all the moments
tables that PROC UNIVARIATE produces by using the name or label in
an ODS SELECT statement. The path and label path are unique for each
output object because they include the name of the variable that is
analyzed. You can, therefore, select an individual moments table by
using the path or the label path in an ODS SELECT statement.
Output Added: ------------- Name: Moments Label: Moments Template: base.univariate.Moments Path: Univariate.CityPop_90.Moments Label Path: "The Univariate Procedure"."CityPop_90"."Moments" ------------- Output Added: ------------- Name: BasicMeasures Label: Basic Measures of Location and Variability Template: base.univariate.Measures Path: Univariate.CityPop_90.BasicMeasures Label Path: "The Univariate Procedure"."CityPop_90"."Basic Measures of Location and Variability" ------------- Output Added: ------------- Name: TestsForLocation Label: Tests For Location Template: base.univariate.Location Path: Univariate.CityPop_90.TestsForLocation Label Path: "The Univariate Procedure"."CityPop_90"."Tests For Location" ------------- Output Added: ------------- Name: Quantiles Label: Quantiles Template: base.univariate.Quantiles Path: Univariate.CityPop_90.Quantiles Label Path: "The Univariate Procedure"."CityPop_90"."Quantiles" ------------- Output Added: ------------- Name: ExtremeObs Label: Extreme Observations Template: base.univariate.ExtObs Path: Univariate.CityPop_90.ExtremeObs Label Path: "The Univariate Procedure"."CityPop_90"."Extreme Observations" -------------
Output Added: ------------- Name: Moments Label: Moments Template: base.univariate.Moments Path: Univariate.CityPop_80.Moments Label Path: "The Univariate Procedure"."CityPop_80"."Moments" ------------- Output Added: ------------- Name: BasicMeasures Label: Basic Measures of Location and Variability Template: base.univariate.Measures Path: Univariate.CityPop_80.BasicMeasures Label Path: "The Univariate Procedure"."CityPop_80"."Basic Measures of Location and Variability" ------------- Output Added: ------------- Name: TestsForLocation Label: Tests For Location Template: base.univariate.Location Path: Univariate.CityPop_80.TestsForLocation Label Path: "The Univariate Procedure"."CityPop_80"."Tests For Location" ------------- Output Added: ------------- Name: Quantiles Label: Quantiles Template: base.univariate.Quantiles Path: Univariate.CityPop_80.Quantiles Label Path: "The Univariate Procedure"."CityPop_80"."Quantiles" ------------- Output Added: ------------- Name: ExtremeObs Label: Extreme Observations Template: base.univariate.ExtObs Path: Univariate.CityPop_80.ExtremeObs Label Path: "The Univariate Procedure"."CityPop_80"."Extreme Observations" -------------