🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 09-21-2015 10:11 AM
(2072 views)
I have SAS 9.2, so odstitle is not an option. But I am trying to change the title in proc univariate. The standard output text is
"The Univariate Procedure
Variable:testvariable"
I want to change either the whole thing or just the top portion. Does anyone know how to do this? Basically in my code right now what I have tried is proc univariate with a title statement within, but that just puts a title on top and I want the specific words above changed.
proc univariate data=sashelp.class;
var age;
title "test title";
run;
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Removing the proc title and using a title statement will accomplish this.
ods noproctitle;
title 'Jacobs Summary';
proc univariate data=sashelp.class;
var age ;
run;
ods noproctitle;
title 'Jacobs Summary';
proc univariate data=sashelp.class;
var age ;
run;
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
ODS NOPROCTITLE;
should turn off the procedure title.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I want to replace the standard output text "The Univariate Procedure" with a custom text.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Removing the proc title and using a title statement will accomplish this.
ods noproctitle;
title 'Jacobs Summary';
proc univariate data=sashelp.class;
var age ;
run;
ods noproctitle;
title 'Jacobs Summary';
proc univariate data=sashelp.class;
var age ;
run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Sorry it took a bit to get back to you, server had to update. Thanks a ton this worked.