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;
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.
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.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.
Ready to level-up your skills? Choose your own adventure.