BookmarkSubscribeRSS Feed
yapalparvi
Calcite | Level 5

Hi,

 

How do I change the title or remove the tile, x label and y labels of the graph obtained by this piece of code when I run the glimmix model?

 

Thanks,

Ramesh

PROC GLIMMIX DATA=work.BF_M123;                                                                                                         
  CLASS TYPE MONTH SEX ID;                                                                                                              
     MODEL BPCONTROL  = TYPE|MONTH SEX AGE   / DDFM=KR HTYPE= 3;                                                                        
      random id;                                                                                                                        
       RANDOM _RESIDUAL_            / TYPE=TOEP SUBJECT=ID;                                                                             
        LSMEANS TYPE                / ALPHA=.05 CL OM PDIFF;                                                                            
        LSMEANS MONTH               / ALPHA=.05 CL OM PDIFF;                                                                            
        LSMEANS SEX                 / ALPHA=.05 CL OM PDIFF;                                                                            
    *   LSMEANS TYPE*MONTH          / ALPHA=.05 CL OM PDIFF;                                                                            
        LSMEANS TYPE*MONTH          / SLICE=TYPE SLICEDIFF=TYPE               ALPHA=.05 CL OM PDIFF;                                    
        LSMEANS TYPE*MONTH          / SLICE=month SLICEDIFF=month             ALPHA=.05 CL OM PDIFF;                                    
        LSMEANS TYPE*MONTH          / PLOT=MEAN(SLICEBY=TYPE   JOIN CL) DIFFS ALPHA=.05 CL OM PDIFF adjust=bon;                         
        LSMEANS TYPE*MONTH          / PLOT=MEAN(SLICEBY=MONTH  JOIN CL) DIFFS ALPHA=.05 CL OM PDIFF;                                    
        LSMEANS TYPE*MONTH          / PLOT=MEAN(SLICEBY=TYPE   JOIN cl) DIFFS ALPHA=.05 CL OM PDIFF;                                    
        LSMEANS TYPE*MONTH          / PLOT=MEAN(SLICEBY=MONTH  JOIN cl) DIFFS ALPHA=.05 CL OM PDIFF;                                    
          label  bpcontrol= 'BP control Status';                                                                                        
          label  type     = 'Baseline or Followup';                                                                                     
        title               'Differences in Baseline and Followup means within each Month';                                             
                                                                                                                                        
RUN;                                                                                                                                    
                                                                                                                                        
ods graphics off; quit;                                                                                                                 
run;                                           

1 REPLY 1
Rick_SAS
SAS Super FREQ

If you just want to do this one time, the easiest way is to use the ODS Graphics Editor. See "Change a plot title by using the ODS Graphics Editor."

 

If you want to do this always, the answer is to edit the underlying template. This is described in the SAS/STAT documentation in the section titled "Modifying Graph Titles and Axis Labels."

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1 reply
  • 991 views
  • 0 likes
  • 2 in conversation