ODS features: |
ODS HTML statement:
|
ODS PRINTER statement:
|
ODS LISTING statement:
|
ODS SELECT statement:
| with path |
| with
label |
| PERSIST | |
|
Other SAS features: |
PROC UNIVARIATE
|
Data set: |
STATEPOP
|
This example selects three output objects
to send to both the
HTML destination and the Printer destination.
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.
| ods listing close; |
| options nodate nonumber; |
| ods html body='odsselect-body.htm'; |
| ods printer file='odsselect.ps'; |
| ods select BasicMeasures
"Tests For Location"
Univariate.CityPop_90.ExtremeObs; |
| proc univariate data=statepop mu0=3.5;
var citypop_90 citypop_80;
run; |
| ods html close;
ods printer close; |
| ods listing; |
The HTML output includes three output objects for the
variable CityPop_90 and two output objects for the variable CityPop_80 . Use
the scrollbar to see all the objects.
|
|
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.