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

Hi,

 

Could someone help me how to set minimum and maximum values for a figure.

 

proc template;
  define statgraph viz;
  begingraph;
    annotate;
    layout lattice / columns=2 columnweights=(0.6 0.4);
    layout overlay / yaxisopts=(label='Cumulative Proportion of Patients')
      xaxisopts=(label="Change from Baseline in &endpointlabel.[1]" ) ;
        seriesplot x=&end y=viz / group=&var name='line';
        referenceline y=0.5 / curvelabel="Median" curvelabellocation=inside lineattrs=(color=red pattern=dash);
        referenceline x=0 / curvelabel="No Change" curvelabellocation=inside lineattrs=(color=black pattern=ShortDash);
        discretelegend 'line' / location=outside;
      endlayout;
      layout overlay / xaxisopts=(type=discrete label='Difference from No Change' 
                          display=(label)) ;
          blockplot x=cut block=diff / class=label display=(outline values label) 
                                              repeatedvalues=true;
      endlayout;
      endlayout;
  endgraph;
  end;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Values for which variable? In what role? 

Axis labels you can control with a TICKVALUELIST=(value1 value2 value3), Or VIEWMIN=minimumvalue and VIEWMAX=maximumvalue on an XAXISOPTS or YAXISOPTS statement.

View solution in original post

1 REPLY 1
ballardw
Super User

Values for which variable? In what role? 

Axis labels you can control with a TICKVALUELIST=(value1 value2 value3), Or VIEWMIN=minimumvalue and VIEWMAX=maximumvalue on an XAXISOPTS or YAXISOPTS statement.

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

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 1 reply
  • 811 views
  • 0 likes
  • 2 in conversation