Valid in: | Anywhere |
Category: | ODS: Output Control |
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"
To temporarily suspend a destination, use ODS SELECT NONE. Use ODS SELECT ALL when you want to resume sending output to the suspended destination.
To temporarily suspend a destination, use ODS SELECT NONE. Use ODS SELECT ALL when you want to resume sending output to the suspended destination.
ods exclude where=(_name_ ? 'Histogram');
Features: |
ODS EXCLUDE statement:: Options: ODS-Destination, WHERE=
|
Other features: |
PROC UNIVARIATE |
options nodate; data BPressure; length PatientID $2; input PatientID $ Systolic Diastolic @@; datalines; CK 120 50 SS 96 60 FR 100 70 CP 120 75 BL 140 90 ES 120 70 CP 165 110 JI 110 40 MC 119 66 FC 125 76 RW 133 60 KD 108 54 DS 110 50 JW 130 80 BH 120 65 JW 134 80 SB 118 76 NS 122 78 GS 122 70 AB 122 78 EC 112 62 HH 122 82 ; run;
ods html text='Systolic Blood Pressure' file='Systolic-body.html' frame='Systolic-frame.htm' contents='Systolic-contents.htm' page='Systolic-page.htm';
ods pdf file='Diastolic.pdf' text='Diastolic Blood Pressure' startpage=no;
ods html exclude where=(_path_ ? "Diastolic" ) ; ods pdf exclude where=(_path_ ? "Systolic" ) ;
proc univariate data=BPressure; var Systolic Diastolic; run;
ods html close;
ods pdf close;
options nodate; data BPressure; length PatientID $2; input PatientID $ Systolic Diastolic @@; datalines; CK 120 50 SS 96 60 FR 100 70 CP 120 75 BL 140 90 ES 120 70 CP 165 110 JI 110 40 MC 119 66 FC 125 76 RW 133 60 KD 108 54 DS 110 50 JW 130 80 BH 120 65 JW 134 80 SB 118 76 NS 122 78 GS 122 70 AB 122 78 EC 112 62 HH 122 82 ; run;
ods html text='Systolic Blood Pressure' file='Systolic-body.html' frame='Systolic-frame.htm' contents='Systolic-contents.htm' page='Systolic-page.htm';