![]() Chapter Contents |
![]() Previous |
![]() Next |
| The ODS Statements |
| ODS features: |
| ||||||||||||||||||||
| Other SAS features: | PROC UNIVARIATE | ||||||||||||||||||||
| Data set: | STATEPOP |
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. ![[cautend]](../common/images/cautend.gif)
| Program |
| | 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; |
| HTML Output |
| 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. |
|
| Printer Output |
| |
|
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.