BookmarkSubscribeRSS Feed
FrancisDsa
Calcite | Level 5

Please help me to get rid or overwrite the title "Cumulative Distribution Function for x".

I have been struggling for last 24 hours trying all the option.

Below is the example:

data test;

        drop i;

        do group='A','B';

          do i=1 to 100;

            if group='A' then x=25 + 8*rannor(2345);

              else x=5 + 8*rannor(12345);

            output;

          end;

        end;

      run;

       title 'Comparative plots';

       ods graphics on;

      proc univariate data=test noprint;

        var x;

        class group;

        cdfplot x/overlay;

      run;

      quit;

      title;

2 REPLIES 2
PGStats
Opal | Level 21

With SAS 9.3 TS1M2, you can use options ODSTITLE= and ODSTITLE2= on the CDFPLOT statement

cdfplot x/overlay odstitle="My Title";

PG


CDFPlot1.png
PG
Reeza
Super User

If this is a one-off I'd modify the graph using ODS Graphics editor. If you need it done automagically then I think you may need to modify the template code.

I thought there was an option to change some of that but can't seem to find it. You may want to post this in a SAS Graphics Forum to get a better response.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2805 views
  • 0 likes
  • 3 in conversation