Slide 1
Zooming in on graphics
Armin Gemperli, BIOP AG, Basel, Switzerland
Zooming in on graphics Armin Gemperli, BIOP AG, Basel, Switzerland - - PowerPoint PPT Presentation
Zooming in on graphics Armin Gemperli, BIOP AG, Basel, Switzerland Slide 1 Zooming in on graphics Problem Description How to chose the axis range for multiple plots on same data Slide 2 Zooming in on graphics Restricting vertical axis
Slide 1
Armin Gemperli, BIOP AG, Basel, Switzerland
Slide 2
Zooming in on graphics
Slide 3
Zooming in on graphics
NOTE: 56 observation(s) outside the axis range for the y * x request. WARNING: Values exist outside the axis range, but only values within the displayed range took part in interpolation calculations for the PLOT statement.
Proc GPLOT with axis statement Interpol=box
Slide 4
Zooming in on graphics
mode=exclude (Default) Data not seen does not contribute to the calculation mode=include All data contributes
NOTE: 56 observation(s) outside the axis range for the y * x request.
Slide 5
Zooming in on graphics
Interpol=join No warning Note No warning Note mode=include mode=exclude
Slide 6
Zooming in on graphics
Interpol=step No warning Note Warning Note mode=include mode=exclude Same for Interpol=HILO, STD, L, SM, SPLINE, R
Slide 7
Zooming in on graphics
Interpol=needle No warning Note No warning Note mode=include mode=exclude
Slide 8
Zooming in on graphics
Interpol=map/plot-pattern No warning Note Warning Note mode=include mode=exclude
Slide 9
Zooming in on graphics
Clipfactor=factor factor>1.
The upper limit is: Q1+R×factor The lower limit is: Q3–R×factor R=Q3-Q1 is the interquartile range and Q1 and Q3 the mean of lower and upper quartiles across all groups.
Clipfactor=2 Clipfactor=1.4
Slide 10
Zooming in on graphics
Clipfactor=1.4
GOPTIONS output ODS output
Slide 11
Zooming in on graphics
Boxplot: proc sgplot; vbox y / category=x; yaxis max=7; /* same with values=(0 to 7) */ run;
Slide 12
Zooming in on graphics
symbol1 i=box v=dot mode=include; symbol2 i=none v=triangle; axis1 order=(0 to &cutpnt by 10); proc gplot; plot y*x=mark / vaxis=axis1; run; quit;
Slide 13
Zooming in on graphics
Slide 14
Zooming in on graphics