🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 09-23-2021 09:37 AM
(616 views)
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.