ODS features: |
|
Other SAS features: |
PROC UNIVARIATE
|
This example shows how
to determine the names and labels of the output objects that a procedure creates.
You can use this information to select and exclude output objects (see Selecting Output for the HTML and Printer Destinations) and to
create output data sets (see Creating Output Data Sets).
Note: This example uses file names that may not be valid
in all operating environments. To successfully run the example in your operating
environment, you may need to change the file specifications. See Alternative ODS HTML Statements for Running Examples in Different Operating Environments.
| data statepop;
input State $ CityPop_80 CityPop_90
NonCityPop_80 NonCityPop_90 Region;
format region 1.;
label citypop_80= '1980 metropolitan pop in millions'
noncitypop_80='1980 nonmetropolitan pop in millions'
citypop_90= '1990 metropolitan pop in millions'
noncitypop_90='1990 nonmetropolitan pop in million'
region='Geographic region';
datalines;
ME .405 .443 .721 .785 1
NH .535 .659 .386 .450 1
VT .133 .152 .378 .411 1
... more lines of data ...
CA 22.907 28.799 .760 .961 4
AK .174 .226 .227 .324 4
HI .763 .836 .202 .272 4
; |
| ods trace on / label; |
| proc univariate data=statepop mu0=3.5;
var citypop_90 citypop_80;
run; |
| ods trace off; |
|
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"
-------------
| |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.