Skip to Content
Producing High-Quality Figures Using SAS/GRAPH and ODS Graphics Procedures
book

Producing High-Quality Figures Using SAS/GRAPH and ODS Graphics Procedures

by Charlie Chunhua Liu
February 2015
Beginner to intermediate
282 pages
7h 27m
English
Chapman and Hall/CRC
Content preview from Producing High-Quality Figures Using SAS/GRAPH and ODS Graphics Procedures
46 Producing High-Quality Figures Using SAS/Graph
®
and ODS Graphics
var rate;
output out = rate_sum mean = rate_avg min = rate_min max =
rate_max;
run;
** Min, Max and Average Point by Year;
proc means data = FixedRate noprint;
where month ne 13 and year ne 2013;
by year;
var point;
output out = point_sum mean = point_avg min = point_min max
= point_max;
run;
data rate_sum2;
set rate_sum;
drop rate_avg rate_min rate_max _TYPE_ _FREQ_;
rate = rate_avg; sum = ‘Avg’; output;
rate = rate_max; sum = ‘Max’; output;
rate = rate_min; sum = ‘Min’; output;
run;
data point_sum2;
set point_sum;
drop point_avg point_min point_max _TYPE_ _FREQ_;
point = point_avg; sum = ‘Avg’; output;
point = point_max; sum = ‘Max’; output;
point = point_min; sum ...
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

Carpenter's Guide to Innovative SAS Techniques

Carpenter's Guide to Innovative SAS Techniques

Art Carpenter
What Employees Want Most in Uncertain Times

What Employees Want Most in Uncertain Times

Kristine W. Powers, Jessica B.B. Diaz

Publisher Resources

ISBN: 9781482207026