BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jacob_klimek
Obsidian | Level 7

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
Reeza
Super User
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;

View solution in original post

4 REPLIES 4
ballardw
Super User

ODS NOPROCTITLE;

should turn off the procedure title.

 

jacob_klimek
Obsidian | Level 7

I want to replace the standard output text "The Univariate Procedure" with a custom text.

Reeza
Super User
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;
jacob_klimek
Obsidian | Level 7

Sorry it took a bit to get back to you, server had to update. Thanks a ton this worked.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1501 views
  • 0 likes
  • 3 in conversation