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;
ODS NOPROCTITLE;
should turn off the procedure title.
I want to replace the standard output text "The Univariate Procedure" with a custom text.
Sorry it took a bit to get back to you, server had to update. Thanks a ton this worked.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.