Skip to Main Content
SAS 9.4 ODS Graphics, 3rd Edition
book

SAS 9.4 ODS Graphics, 3rd Edition

by Matt Neuburg
August 2014
Intermediate to advanced content levelIntermediate to advanced
1284 pages
50h 37m
English
SAS Institute
Content preview from SAS 9.4 ODS Graphics, 3rd Edition
data test;
length Status $4;
do X=0 to 8 by 0.25;
Y=(x-3)*(x-3) + 5;
if X >= 3 then Status='Up';
else Status='Down';
output;
end;
run;
/* Create the plot and drop lines.
Specify a label and line attributes for the drop lines.*/
title "Drop lines at Inflection Point";
proc sgpanel data=test;
panelby Status;
series x=x y=y;
dropline x=3 y=5 / dropto=both label="(3,5)"
lineattrs=(color=blue pattern=dot);
rowaxis min=0;
run;
title;
FRINGE Statement
Creates a fringe plot on the X axis of an X-Y plot.
Interaction: Fringe plots can be overlaid with all plots except with box plots and categorical
charts (bar charts, line plots, and dot plots).
Example: “About ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

SAS 9.4 ODS Graphics, 2nd Edition

SAS 9.4 ODS Graphics, 2nd Edition

SAS Documentation

Publisher Resources

ISBN: 9781629593159