Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study)

Size: px
Start display at page:

Download "Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study)"

Transcription

1 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 13.1 Introduction Creating Bar and Pie Charts Creating Plots... 20

2 13-2 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 13.1 Introduction What Is SAS/GRAPH Software? SAS/GRAPH software is a component of SAS software that enables you to create the following types of graphs: bar, block, and pie charts two-dimensional scatter plots and line plots three dimensional scatter and surface plots contour plots maps text slides custom graphs 3 Bar Charts (GCHART Procedure) 4

3 13.1 Introduction 13-3 Pie Charts (GCHART Procedure) 5 Scatter and Line Plots (GPLOT Procedure) 6

4 13-4 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) Bar Charts with Line Plot Overlay (GBARLINE Procedure) 7 Three-Dimensional Surface and Scatter Plots (G3D Procedure) 8

5 13.1 Introduction 13-5 Three-Dimensional Contour Plots (GCONTOUR Procedure) 9 Maps (GMAP Procedure) 10

6 13-6 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) Multiple Graphs on a Page (GREPLAY Procedure) 11 SAS/GRAPH Programs General form of a SAS/GRAPH program: GOPTIONS options; global statements graphics procedure steps For example: goptions cback=white; title 'Number of Employees by Job Title'; proc gchart data=orion.staff; vbar Job_Title; 12

7 13.1 Introduction 13-7 RUN-Group Processing Many SAS/GRAPH procedures can use RUN group processing, which means that the following are true: The procedure executes the group of statements following the PROC statement when a RUN statement is encountered. Additional statements followed by another RUN statement can be submitted without resubmitting the PROC statement. The procedure stays active until a PROC, DATA, or QUIT statement is encountered. 13 Example of RUN-Group Processing proc gchart data=orion.staff; vbar Job_Title; title 'Bar Chart of Job Titles'; pie Job_Title; title 'Pie Chart of Job Titles'; 14

8 13-8 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 13.2 Creating Bar and Pie Charts 16 Producing Bar and Pie Charts with the GCHART Procedure General form of the PROC GCHART statement: PROC GCHART DATA=SAS-data-set; Use one of these statements to specify the chart type: HBAR chart-variable... </ options>; HBAR3D chart-variable... </ options>; VBAR chart-variable... </ options>; VBAR3D chart-variable... </ options>; PIE chart-variable... </ options>; PIE3D chart-variable... </ options>; The chart variable determines the number of bars or slices produced within a graph. The chart variable can be character or numeric. By default, the height, length, or slice represents a frequency count of the values of the chart variable.

9 13.2 Creating Bar and Pie Charts 13-9 Creating Bar and Pie Charts p113d01 1. Submit the first PROC GCHART step to create a vertical bar chart representing a frequency count. The VBAR statement creates a vertical bar chart showing the number of sales representatives for each value of Job_Title in the orion.staff data set. Job_Title is referred to as the chart variable. Because the chart variable is a character variable, PROC GCHART displays one bar for each value of Job_Title. proc gchart data=orion.staff; vbar Job_Title; where Job_Title =:'Sales Rep'; title 'Number of Employees by Job Title'; The RESET=ALL option resets all graphics options to their default settings and clears any titles or footnotes that are in effect.

10 13-10 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 2. Submit the second PROC GCHART step to create a three-dimensional horizontal bar chart. The HBAR3D statement creates a three-dimensional horizontal bar chart showing the same information as the previous bar chart. Notice that the HBAR and HBAR3D statements automatically display statistics to the right of the chart. proc gchart data=orion.staff; hbar3d Job_Title; title 'Number of Employees by Job Title'; where Job_Title =:'Sales Rep';

11 13.2 Creating Bar and Pie Charts Submit the third PROC GCHART step to suppress the display of statistics on the horizontal bar chart. The NOSTATS option in the HBAR3D statement suppresses the display of statistics on the chart. proc gchart data=orion.staff; hbar3d Job_Title / nostats; title 'Number of Employees by Job Title'; where Job_Title =:'Sales Rep';

12 13-12 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 4. Submit the fourth PROC GCHART step to use a numeric chart variable. The VBAR3D statement creates a vertical bar chart showing the distribution of values of the variable Salary. Because the chart variable is numeric, PROC GCHART divides the values of Salary into ranges and displays one bar for each range. The value under the bar represents the midpoint of the range. The FORMAT statement assigns the DOLLAR9. format to Salary. proc gchart data=orion.staff; vbar3d salary / autoref; where Job_Title =:'Sales Rep'; format salary dollar9.; title 'Salary Distribution Midpoints for Sales Reps';

13 13.2 Creating Bar and Pie Charts Submit the fifth PROC GCHART step to specify ranges for a numeric chart variable and add reference lines. The HBAR3D statement creates a three-dimensional horizontal bar chart. The LEVELS= option in the HBAR3D statement divides the values of Salary into five ranges and display a bar for each range of values. The RANGE option in the HBAR3D statement displays the range of values, rather than the midpoint, under each bar. The AUTOREF option displays reference lines at each major tick mark on the horizontal (response) axis. proc gchart data=orion.staff; hbar3d salary/levels=5 range autoref; where Job_Title =:'Sales Rep'; format salary dollar9.; title 'Salary Distribution Ranges for Sales Reps'; To display a bar for each unique value of the chart variable, specify the DISCRETE option instead of the LEVELS= option in the VBAR, VBAR3D, HBAR, or HBAR3D statement. The DISCRETE option should be used only when the chart variable has a relatively small number of unique values.

14 13-14 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 6. Submit the sixth PROC GCHART step to create bar charts based on statistics. A vertical bar chart displays one bar for each value of the variable Job_Title by specifying Job_Title as the chart variable in the VBAR statement. The height of the bar should be based on the mean value of the variable Salary for each job title. The SUMVAR= option in the VBAR statement specifies the variable whose values control the height or length of the bars. This variable (Salary, in this case) is known as the analysis variable. The TYPE= option in the VBAR statement specifies the statistic for the analysis variable that dictates the height or length of the bars. Possible values for the TYPE= option are SUM and MEAN. A LABEL statement assigns labels to the variables Job_Title and Salary. proc gchart data=orion.staff; vbar Job_Title / sumvar=salary type=mean; where Job_Title =:'Sales Rep'; format salary dollar9.; label Job_Title='Job Title' Salary='Salary'; title 'Average Salary by Job Title'; If the TYPE= option is not specified, the default value of the TYPE= option is SUM.

15 13.2 Creating Bar and Pie Charts Submit the seventh PROC GCHART step to assign a different color to each bar and display the mean statistic on the top of each bar. The PATTERNID=MIDPOINT option in the VBAR statement causes PROC GCHART to assign a different pattern or color to each value of the midpoint (chart) variable. The MEAN option in the VBAR statement displays the mean statistic on the top of each bar. Other options such as SUM, FREQ, and PERCENT can be specified to display other statistics on the top of the bars. proc gchart data=orion.staff; vbar Job_Title / sumvar=salary type=mean patternid=midpoint mean; where Job_Title =:'Sales Rep'; format salary dollar9.; title 'Average Salary by Job Title'; Only one statistic can be displayed on top of each vertical bar. For horizontal bar charts, you can specify multiple statistics, which are displayed to the right of the bars.

16 13-16 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 8. Submit the eighth PROC GCHART step to divide the bars into subgroups. A VBAR statement creates a vertical bar chart that shows the number of sales representatives for each value of Job_Title. The SUBGROUP= option in the VBAR statement divides the bar into sections, where each section represents the frequency count for each value of the variable Gender. proc gchart data=orion.staff; vbar Job_Title/subgroup=Gender; where Job_Title =:'Sales Rep'; title 'Frequency of Job Title, Broken Down by Gender';

17 13.2 Creating Bar and Pie Charts Submit the ninth PROC GCHART step to group the bars. A VBAR statement creates a vertical bar chart showing the frequency for each value of Gender. The GROUP= option in the VBAR statement displays a separate set of bars for each value of Job_Title. The PATTERNID=MIDPOINT option in the VBAR statement displays each value of Gender (the midpoint or chart variable) with the same pattern. proc gchart data=orion.staff; vbar gender/group=job_title patternid=midpoint; where Job_Title =:'Sales Rep'; title 'Frequency of Job Gender, Grouped by Job Title'; Submitting the following statements (reversing the chart and group variables) would produce a chart with two groups of four bars: proc gchart data=orion.staff; vbar gender/group=job_title patternid=midpoint;

18 13-18 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 10. Submit the final PROC GCHART step to create multiple pie charts using RUN-group processing. A PIE and a PIE3D statement in the same PROC GCHART step produces both a two-dimensional pie chart and a three-dimensional pie chart showing the number of sales representatives for each value of Job_Title. The TITLE2 statements specify different subtitles for each chart. The NOHEADING option in the PIE3D statement suppresses the FREQUENCY of Job_Title heading. Because RUN-group processing is in effect, note the following: It is not necessary to submit a separate PROC GCHART statement for each graph. The WHERE statement is applied to both charts. The TITLE statement is applied to both charts. A separate TITLE2 statement is used for each chart. proc gchart data=orion.staff; pie Job_Title; where Job_Title =:'Sales Rep'; title 'Frequency Distribution of Job Titles'; title2 '2-D Pie Chart'; pie3d Job_Title / noheading; title2 '3-D Pie Chart';

19 13.2 Creating Bar and Pie Charts 13-19

20 13-20 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 13.3 Creating Plots Producing Plots with the GPLOT Procedure You can use the GPLOT procedure to plot one variable against another within a set of coordinate axes. General form of a PROC GPLOT step: PROC GPLOT DATA=SAS-data-set; PLOT vertical-variable*horizontal-variable </ options>; RUN; QUIT; 19

21 13.3 Creating Plots Creating Plots p113d02 1. Submit the first PROC GPLOT step to create a simple scatter plot. The PROC GPLOT creates a plot displaying the values of the variable Yr2007 on the vertical axis and Month on the horizontal axis. The points are displayed using the default plotting symbol (a plus sign). A FORMAT statement assigns the DOLLAR12. format to Yr2007. proc gplot data=orion.budget; plot Yr2007*Month; format Yr2007 dollar12.; title 'Plot of Budget by Month';

22 13-22 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 2. Submit the second PROC GPLOT step to specify plot symbols and interpolation lines. The SYMBOL statement specifies an alternate plotting symbol and draws an interpolation line joining the plot points. The options in the SYMBOL statement are as follows: V= specifies the plotting symbol (a dot). I= specifies the interpolation method to be used to connect the points (join). CV= specifies the color of the plotting symbol. CI= specifies the color of the interpolation line. The LABEL statement assigns a label to the variable Yr2007. proc gplot data=orion.budget; plot Yr2007*Month / haxis=1 to 12; label Yr2007='Budget'; format Yr2007 dollar12.; title 'Plot of Budget by Month'; symbol1 v=dot i=join cv=red ci=blue;

23 13.3 Creating Plots Submit the third PROC GPLOT step to overlay multiple plot lines on the same set of axes. The PLOT statement specifies two separate plot requests (Yr2006*Month and Yr2007*Month), which results in an overlay plot with the variables Yr2006 and Yr2007 on the vertical axis and Month on the horizontal axis. The options in the PLOT statement are as follows: The OVERLAY option causes both plot requests to be displayed on the same set of axes. The HAXIS= option specifies the range of values for the horizontal axis. (The VAXIS= option can be used to specify the range for the vertical axis.) The VREF= option specifies a value on the vertical axis where a reference line should be drawn. The CFRAME= option specifies a color to be used for the background within the plot axes. proc gplot data=orion.budget; plot Yr2006*Month yr2007*month/ overlay haxis=1 to 12 vref= cframe= very light gray ; label Yr2006='Budget'; format Yr2006 dollar12.; title 'Plot of Budget by Month for 2006 and 2007'; symbol1 i=join v=dot ci=blue cv=blue; symbol2 i=join v=triangle ci=red cv=red;

24 13-24 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 13.4 Enhancing Output Enhancing SAS/GRAPH Output SAS/GRAPH uses default values for colors, fonts, text size, and other graph attributes. You can override these defaults using the following methods: specifying an ODS style specifying default attributes in a GOPTIONS statement specifying attributes and options in global statements and procedure statements 22

25 13.4 Enhancing Output Enhancing Output p113d03 1. Submit the first PROC GPLOT step to use ODS styles to control the appearance of the output. Specify the style in the ODS LISTING statement with the STYLE= option produces a different ODS style. ods listing style=gears; proc gplot data=orion.budget; plot Yr2007*Month; format Yr2007 dollar12.; label Yr2007='Budget'; title 'Plot of Budget by Month';

26 13-26 Chapter 13 Introduction to Graphics Using SAS/GRAPH (Self-Study) 2. Submit the second PROC GPLOT step to specify the options in the TITLE and FOOTNOTE statements to control the text appearance. The TITLE and FOOTNOTE statements override the default fonts, colors, height, and text justification. The following options are used: F= (or FONT=) specifies a font. C= (or COLOR=) specifies text color. H= (or HEIGHT=) specifies text height. Units of height can be specified as a percent of the display (PCT), inches (IN), centimeters (CM), cells (CELLS), or points (PT). J= (or JUSTIFY=) specifies text justification. Valid values are LEFT (L), CENTER (C), and RIGHT (R). All options apply to text following the option. ods listing style=gears; proc gplot data=orion.budget; plot Yr2007*Month / vref= ; label Yr2007='Budget'; format Yr2007 dollar12.; title f=centbi h=5 pct 'Budget by Month'; footnote c=green j=left 'Data for 2007';

27 13.4 Enhancing Output Submit the third PROC GPLOT step to use a GOPTIONS statement to control the appearance of the output. A GOPTIONS statement specifies options to control the appearance of all text in the graph. The following options are used: FTEXT= specifies a font for all text. CTEXT= specifies the color for all text. HTEXT= specifies the height for all text. If a text option is specified both in a GOPTIONS statement and in a TITLE or FOOTNOTE statement, the option specified in the TITLE or FOOTNOTE statement overrides the value in the GOPTIONS statement only for that title or footnote. ods listing style=gears; goptions reset=all ftext=centb htext=3 pct ctext=dark_blue; proc gplot data=orion.budget; plot Yr2007*Month / vref= ; label Yr2007='Budget'; format Yr2007 dollar12.; title f=centbi 'Budget by Month';

Picturing Statistics Diana Suhr, University of Northern Colorado

Picturing Statistics Diana Suhr, University of Northern Colorado Picturing Statistics Diana Suhr, University of Northern Colorado Abstract Statistical results could be easier to understand if you visualize them. This Hands On Workshop will give you an opportunity to

More information

Want Quick Results? An Introduction to SAS/GRAPH Software. Arthur L. Carpenter California Occidental Consultants

Want Quick Results? An Introduction to SAS/GRAPH Software. Arthur L. Carpenter California Occidental Consultants Want Quick Results? An Introduction to SAS/GRAPH Software Arthur L. arpenter alifornia Occidental onsultants KEY WORDS GOPTIONS, GPLOT, GHART, SYMBOL, AXIS, TITLE, FOOTNOTE ABSTRAT SAS/GRAPH software contains

More information

SAS/GRAPH Introduction. Winfried Jakob, SAS Administrator Canadian Institute for Health Information

SAS/GRAPH Introduction. Winfried Jakob, SAS Administrator Canadian Institute for Health Information SAS/GRAPH Introduction Winfried Jakob, SAS Administrator Canadian Institute for Health Information 1 Agenda Overview Components of SAS/GRAPH Software Device-Based vs. Template-Based Graphics Graph Types

More information

CHAPTER 1 Introduction to SAS/GRAPH Software

CHAPTER 1 Introduction to SAS/GRAPH Software 3 CHAPTER 1 Introduction to SAS/GRAPH Software Overview 4 Components of SAS/GRAPH Software 4 Device-Based Graphics and Template-Based Graphics 6 Graph Types 6 Charts 7 Block charts 7 Horizontal bar charts

More information

Tips to Customize SAS/GRAPH... for Reluctant Beginners et al. Claudine Lougee, Dualenic, LLC, Glen Allen, VA

Tips to Customize SAS/GRAPH... for Reluctant Beginners et al. Claudine Lougee, Dualenic, LLC, Glen Allen, VA Paper SIB-109 Tips to Customize SAS/GRAPH... for Reluctant Beginners et al. Claudine Lougee, Dualenic, LLC, Glen Allen, VA ABSTRACT SAS graphs do not have to be difficult or created by SAS/GRAPH experts.

More information

Modifying Graphics in SAS

Modifying Graphics in SAS Modifying Graphics in SAS Statistics 135 Autumn 2005 Copyright c 2005 by Mark E. Irwin Modifying Graphs As in S, it is possible to modify fonts, colours, symbols, lines, etc in SAS. The approach is a bit

More information

Data Driven Annotations: An Introduction to SAS/GRAPH s Annotate Facility

Data Driven Annotations: An Introduction to SAS/GRAPH s Annotate Facility Paper HW03 Data Driven Annotations: An Introduction to SAS/GRAPH s Annotate Facility Arthur L. Carpenter California Occidental Consultants ABSTRACT When SAS/GRAPH was first introduced, it was the only

More information

Interactive Graphs from the SAS System

Interactive Graphs from the SAS System Interactive Graphs from the SAS System Shi-Tao Yeh, GlaxoSmithKline, King of Prussia, PA. ABSTRACT An interactive graph is a dynamic graph interface that allows viewers interaction. The SAS System provides

More information

ODS The output delivery system

ODS The output delivery system SAS Lecture 6 ODS and graphs ODS The output delivery system Aidan McDermott, May 2, 2006 1 2 The output delivery system During the 1990 s SAS introduced a more extensive way of dealing with SAS output

More information

IMPROVING A GRAPH USING PROC GPLOT AND THE GOPTIONS STATEMENT

IMPROVING A GRAPH USING PROC GPLOT AND THE GOPTIONS STATEMENT SESUG Paper 33-2017 IMPROVING A GRAPH USING PROC GPLOT AND THE GOPTIONS STATEMENT Wendi Wright, Questar Assessment, Inc. ABSTRACT Starting with a SAS PLOT program, we will transfer this plot into PROC

More information

Using SAS/GRAPH Software to Create Graphs on the Web Himesh Patel, SAS Institute Inc., Cary, NC Revised by David Caira, SAS Institute Inc.

Using SAS/GRAPH Software to Create Graphs on the Web Himesh Patel, SAS Institute Inc., Cary, NC Revised by David Caira, SAS Institute Inc. Paper 189 Using SAS/GRAPH Software to Create Graphs on the Web Himesh Patel, SAS Institute Inc., Cary, NC Revised by David Caira, SAS Institute Inc., Cary, NC ABSTRACT This paper highlights some ways of

More information

ABC s of Graphs in Version 8 Caroline Bahler, Meridian Software, Inc.

ABC s of Graphs in Version 8 Caroline Bahler, Meridian Software, Inc. ABC s of Graphs in Version 8 Caroline Bahler, Meridian Software, Inc. Abstract Version 8 has greatly increased the versatility and usability of graphs that can be created by SAS. This paper will discuss

More information

The Plot Thickens from PLOT to GPLOT

The Plot Thickens from PLOT to GPLOT Paper HOW-069 The Plot Thickens from PLOT to GPLOT Wendi L. Wright, CTB/McGraw-Hill, Harrisburg, PA ABSTRACT This paper starts with a look at basic plotting using PROC PLOT. A dataset with the daily number

More information

New SAS/GRAPH Features. Jack Bulkley, SAS Institute Inc. GPLOT INTRODUCTION

New SAS/GRAPH Features. Jack Bulkley, SAS Institute Inc. GPLOT INTRODUCTION New SAS/GRAP Features Jack Bulkley SAS Institute Inc. INTRODUCTION The SAS/GRAP product is an evolving product. New features as suggested by users or developed in-house are constantly considered and added.

More information

The GANNO Procedure. Overview CHAPTER 12

The GANNO Procedure. Overview CHAPTER 12 503 CHAPTER 12 The GANNO Procedure Overview 503 Procedure Syntax 504 PROC GANNO Statement 504 Examples 507 Example 1: Scaling Data-Dependent Output 507 Example 2: Storing Annotate Graphics 509 Example

More information

Introduction to ODS Graphics for the Non-Statistician

Introduction to ODS Graphics for the Non-Statistician ABSTRACT Paper RV-01 Introduction to ODS Graphics for the Non-Statistician Mike Kalt and Cynthia Zender, SAS Institute Inc., Cary, NC Are you a History, English, or other humanities major who has stumbled

More information

The GSLIDE Procedure. Overview. About Text Slides CHAPTER 27

The GSLIDE Procedure. Overview. About Text Slides CHAPTER 27 959 CHAPTER 27 The GSLIDE Procedure Overview 959 About Text Slides 959 About Annotate Output 960 Procedure Syntax 960 PROC GSLIDE Statement 961 Examples 963 Example 1: Producing Text Slides 963 Example

More information

Something for Nothing! Converting Plots from SAS/GRAPH to ODS Graphics

Something for Nothing! Converting Plots from SAS/GRAPH to ODS Graphics ABSTRACT Paper 1610-2014 Something for Nothing! Converting Plots from SAS/GRAPH to ODS Graphics Philip R Holland, Holland Numerics Limited, UK All the documentation about the creation of graphs with SAS

More information

New Visualization in V8.2

New Visualization in V8.2 Paper 161-26 New Visualization in V8.2 Himesh Patel, SAS Institute Sanjay Matange, SAS Institute ABSTRACT Looking for a pain-free way to combine tables and graphs on the same page? Well, the search is

More information

Arthur L. Carpenter California Occidental Consultants

Arthur L. Carpenter California Occidental Consultants Paper HOW-004 SAS/GRAPH Elements You Should Know Even If You Don t Use SAS/GRAPH Arthur L. Carpenter California Occidental Consultants ABSTRACT We no longer live or work in a line printer - green bar paper

More information

INTRODUCTION TO THE SAS ANNOTATE FACILITY

INTRODUCTION TO THE SAS ANNOTATE FACILITY Improving Your Graphics Using SAS/GRAPH Annotate Facility David J. Pasta, Ovation Research Group, San Francisco, CA David Mink, Ovation Research Group, San Francisco, CA ABSTRACT Have you ever created

More information

SAS/GRAPH 9.4: Java Applets and ActiveX Control User s Guide

SAS/GRAPH 9.4: Java Applets and ActiveX Control User s Guide SAS/GRAPH 9.4: Java Applets and ActiveX Control User s Guide SAS Documentation August 30, 2017 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS/GRAPH 9.4:

More information

SAS: Proc GPLOT. Computing for Research I. 01/26/2011 N. Baker

SAS: Proc GPLOT. Computing for Research I. 01/26/2011 N. Baker SAS: Proc GPLOT Computing for Research I 01/26/2011 N. Baker Introduction to SAS/GRAPH Graphics component of SAS system. Includes charts, plots, and maps in both 2 and 3 dimensions. Procedures included

More information

Coders' Corner. Paper ABSTRACT GLOBAL STATEMENTS INTRODUCTION

Coders' Corner. Paper ABSTRACT GLOBAL STATEMENTS INTRODUCTION Paper 70-26 Data Visualization of Outliers from a Health Research Perspective Using SAS/GRAPH and the Annotate Facility Nadia Redmond Kaiser Permanente Center for Health Research, Portland, Oregon ABSTRACT

More information

The Chart Title can be formatted to change color, pattern, typeface, size and alignment using the Format Chart Title dialog box.

The Chart Title can be formatted to change color, pattern, typeface, size and alignment using the Format Chart Title dialog box. Excel 2003 Formatting a Chart Introduction Page 1 By the end of this lesson, learners should be able to: Format the chart title Format the chart legend Format the axis Formatting the Chart Title Page 2

More information

ODS and Web Enabled Device Drivers: Displaying and Controlling Large Numbers of Graphs. Arthur L. Carpenter and Richard O. Smith Data Explorations

ODS and Web Enabled Device Drivers: Displaying and Controlling Large Numbers of Graphs. Arthur L. Carpenter and Richard O. Smith Data Explorations ODS and Web Enabled Device Drivers: Displaying and Controlling Large Numbers of Graphs Arthur L. Carpenter and Richard O. Smith Data Explorations ABSTRACT With the advent of the Output Delivery System,

More information

Archer R. Gravely, UNC Asheville, Asheville, NC

Archer R. Gravely, UNC Asheville, Asheville, NC Achieving Graphical Excellence With SAS/GRAPH Software Archer R. Gravely, UNC Asheville, Asheville, NC Abstract This paper will integrate Tufte s (1983) principles of graphical excellence with the use

More information

Annotate Dictionary CHAPTER 11

Annotate Dictionary CHAPTER 11 427 CHAPTER 11 Annotate Dictionary Overview 428 Annotate Functions 429 BAR Function 431 CNTL2TXT Function 432 COMMENT Function 434 DEBUG Function 435 DRAW Function 435 DRAW2TXT Function 436 FRAME Function

More information

It s Not All Relative: SAS/Graph Annotate Coordinate Systems

It s Not All Relative: SAS/Graph Annotate Coordinate Systems Paper TU05 It s Not All Relative: SAS/Graph Annotate Coordinate Systems Rick Edwards, PPD Inc, Wilmington, NC ABSTRACT This paper discusses the SAS/Graph Annotation coordinate systems and how a combination

More information

TS-659: Exporting SAS/GRAPH Output to PDF Files from Release 8.2 and higher

TS-659: Exporting SAS/GRAPH Output to PDF Files from Release 8.2 and higher TS-659: Exporting SAS/GRAPH Output to PDF Files from Release 8.2 and higher The Portable Document Format is a common format for storing text and graphics in a high-resolution document that retains the

More information

USING SAS PROC GREPLAY WITH ANNOTATE DATA SETS FOR EFFECTIVE MULTI-PANEL GRAPHICS Walter T. Morgan, R. J. Reynolds Tobacco Company ABSTRACT

USING SAS PROC GREPLAY WITH ANNOTATE DATA SETS FOR EFFECTIVE MULTI-PANEL GRAPHICS Walter T. Morgan, R. J. Reynolds Tobacco Company ABSTRACT USING SAS PROC GREPLAY WITH ANNOTATE DATA SETS FOR EFFECTIVE MULTI-PANEL GRAPHICS Walter T. Morgan, R. J. Reynolds Tobacco Company ABSTRACT This presentation introduces SAS users to PROC GREPLAY and the

More information

Move =(+0,+5): Making SAS/GRAPH Work For You

Move =(+0,+5): Making SAS/GRAPH Work For You Move =(+0,+5): Making SAS/GRAPH Work For You Deb Cassidy, Computer Horizons Corporation, ndianapolis, N 've often been asked "Can SAS/GRAPH do...?" SAS/GRAPH can do almost anything - if you are willing

More information

What's New in Release of SAS/GRAPH Software

What's New in Release of SAS/GRAPH Software What's New in Release 6.07 - of SAS/GRAPH Software Karin Eftmann, Angela Zenari, SAS Institute Adapted from a SUGfl7 Paper Presented by Donna Bravo, SAS Institute Abstract The request for a graphics editor

More information

Using SAS/GRAPH Software to Create Graphs on The Web Himesh Patel, SAS Institute Inc., Cary, NC

Using SAS/GRAPH Software to Create Graphs on The Web Himesh Patel, SAS Institute Inc., Cary, NC Using SAS/GRAPH Software to Create Graphs on The Web Himesh Patel, SAS Institute Inc., Cary, NC ABSTRACT Version 7 SAS/GRAPH software will contain several enhancements that enable users to easily display

More information

Information Visualization

Information Visualization Paper 158-25 Graphs In a Minute Harry J. Maxwell Jr., SAS Institute Inc, Cary, NC ABSTRACT Software from SAS Institute provides multiple ways of producing attractive graphics quickly using simple and intuitive

More information

Creating Population Tree Charts (Using SAS/GRAPH Software) Robert E. Allison, Jr. and Dr. Moon W. Suh College of Textiles, N. C.

Creating Population Tree Charts (Using SAS/GRAPH Software) Robert E. Allison, Jr. and Dr. Moon W. Suh College of Textiles, N. C. SESUG 1994 Creating Population Tree Charts (Using SAS/GRAPH Software) Robert E. Allison, Jr. and Dr. Moon W. Suh College of Textiles, N. C. State University ABSTRACT This paper describes a SAS program

More information

How to annotate graphics

How to annotate graphics Paper TU05 How to annotate graphics Sandrine STEPIEN, Quintiles, Strasbourg, France ABSTRACT Graphs can be annotated using different functions that add graphics elements to the output. Amongst other things,

More information

A Juxtaposition of Tables and Graphs Using SAS /GRAPH Procedures

A Juxtaposition of Tables and Graphs Using SAS /GRAPH Procedures A Juxtaposition of Tables and Graphs Using SAS /GRAPH Procedures Suhas R. Sanjee, MaxisIT Inc., Edison, NJ Sheng Zhang, Merck and Co., Upper Gwynedd, PA ABSTRACT Graphs provide high-impact visuals that

More information

Chapter 27 HBAR Statement. Chapter Table of Contents

Chapter 27 HBAR Statement. Chapter Table of Contents Chapter 27 HBAR Statement Chapter Table of Contents OVERVIEW...835 GETTING STARTED...836 CreatingaParetoChartfromRawData...836 CreatingaParetoChartUsingFrequencyData...838 Restricting the Number of Pareto

More information

Tips and Tricks in Creating Graphs Using PROC GPLOT

Tips and Tricks in Creating Graphs Using PROC GPLOT Paper CC15 Tips and Tricks in Creating Graphs Using PROC GPLOT Qin Lin, Applied Clinical Intelligence, LLC, Bala Cynwyd, PA ABSTRACT SAS/GRAPH is a very powerful data analysis and presentation tool. Creating

More information

Raw Data. Statistics 1/8/2016. Relative Frequency Distribution. Frequency Distributions for Qualitative Data

Raw Data. Statistics 1/8/2016. Relative Frequency Distribution. Frequency Distributions for Qualitative Data Statistics Raw Data Raw data is random and unranked data. Organizing Data Frequency distributions list all the categories and the numbers of elements that belong to each category Frequency Distributions

More information

Paper Time Contour Plots. David J. Corliss, Wayne State University / Physics and Astronomy

Paper Time Contour Plots. David J. Corliss, Wayne State University / Physics and Astronomy ABSTRACT Paper 1311-2014 Time Contour Plots David J. Corliss, Wayne State University / Physics and Astronomy This new SAS tool is two-dimensional color chart for visualizing changes in a population or

More information

Usinq the VBAR and BBAR statements and the TEMPLATE Facility to Create side-by-side, Horizontal Bar Charts with Shared Vertical Axes Labels

Usinq the VBAR and BBAR statements and the TEMPLATE Facility to Create side-by-side, Horizontal Bar Charts with Shared Vertical Axes Labels Usinq the VBAR and BBAR statements and the TEMPLATE Facility to Create side-by-side, Horizontal Bar Charts with Shared Vertical Axes Labels Lela M. Brown, University of Oklahoma ABSTRACT PRoe GREPLAY's

More information

Multiple Graphical and Tabular Reports on One Page, Multiple Ways to Do It Niraj J Pandya, CT, USA

Multiple Graphical and Tabular Reports on One Page, Multiple Ways to Do It Niraj J Pandya, CT, USA Paper TT11 Multiple Graphical and Tabular Reports on One Page, Multiple Ways to Do It Niraj J Pandya, CT, USA ABSTRACT Creating different kind of reports for the presentation of same data sounds a normal

More information

Chapter 25 PROC PARETO Statement. Chapter Table of Contents. OVERVIEW SYNTAX SummaryofOptions DictionaryofOptions...

Chapter 25 PROC PARETO Statement. Chapter Table of Contents. OVERVIEW SYNTAX SummaryofOptions DictionaryofOptions... Chapter 25 PROC PARETO Statement Chapter Table of Contents OVERVIEW...793 SYNTAX...794 SummaryofOptions...794 DictionaryofOptions...795 791 Part 7. The CAPABILITY Procedure SAS OnlineDoc : Version 8 792

More information

Introduction to SAS/GRAPH Statistical Graphics Procedures

Introduction to SAS/GRAPH Statistical Graphics Procedures 3 CHAPTER 1 Introduction to SAS/GRAPH Statistical Graphics Procedures Overview of SAS/GRAPH Statistical Graphics Procedures 3 Introduction to the SGPLOT Procedure 4 Introduction to the SGPANEL Procedure

More information

SAS CLINICAL SYLLABUS. DURATION: - 60 Hours

SAS CLINICAL SYLLABUS. DURATION: - 60 Hours SAS CLINICAL SYLLABUS DURATION: - 60 Hours BASE SAS PART - I Introduction To Sas System & Architecture History And Various Modules Features Variables & Sas Syntax Rules Sas Data Sets Data Set Options Operators

More information

Applied Regression Modeling: A Business Approach

Applied Regression Modeling: A Business Approach i Applied Regression Modeling: A Business Approach Computer software help: SAS code SAS (originally Statistical Analysis Software) is a commercial statistical software package based on a powerful programming

More information

Select Cases. Select Cases GRAPHS. The Select Cases command excludes from further. selection criteria. Select Use filter variables

Select Cases. Select Cases GRAPHS. The Select Cases command excludes from further. selection criteria. Select Use filter variables Select Cases GRAPHS The Select Cases command excludes from further analysis all those cases that do not meet specified selection criteria. Select Cases For a subset of the datafile, use Select Cases. In

More information

From Getting Started with the Graph Template Language in SAS. Full book available for purchase here.

From Getting Started with the Graph Template Language in SAS. Full book available for purchase here. From Getting Started with the Graph Template Language in SAS. Full book available for purchase here. Contents About This Book... xi About The Author... xv Acknowledgments...xvii Chapter 1: Introduction

More information

Time Contour Plots. David J. Corliss Magnify Analytic Solutions, Detroit, MI

Time Contour Plots. David J. Corliss Magnify Analytic Solutions, Detroit, MI Time Contour Plots David J. Corliss Magnify Analytic Solutions, Detroit, MI ABSTRACT This new SAS tool is two-dimensional color chart for visualizing changes in a population or system over time. Data for

More information

Creating Maps in SAS/GRAPH

Creating Maps in SAS/GRAPH Creating Maps in SAS/GRAPH By Jeffery D. Gilbert, Trilogy Consulting Corporation, Kalamazoo, MI Abstract This paper will give an introduction to creating graphs using the PROC GMAP procedure in SAS/GRAPH.

More information

Chapter 2 Organizing and Graphing Data. 2.1 Organizing and Graphing Qualitative Data

Chapter 2 Organizing and Graphing Data. 2.1 Organizing and Graphing Qualitative Data Chapter 2 Organizing and Graphing Data 2.1 Organizing and Graphing Qualitative Data 2.2 Organizing and Graphing Quantitative Data 2.3 Stem-and-leaf Displays 2.4 Dotplots 2.1 Organizing and Graphing Qualitative

More information

The Evolution of a SAS/GRAPH Application Jenine Eason, AutoTrader.com, Atlanta, GA

The Evolution of a SAS/GRAPH Application Jenine Eason, AutoTrader.com, Atlanta, GA Paper P05-04 The Evolution of a SAS/GRAPH Application Jenine Eason, AutoTrader.com, Atlanta, GA INTRODUCTION Graphs are an excellent way to represent any activity. The author is using web server errors

More information

Getting Started with the SGPLOT Procedure

Getting Started with the SGPLOT Procedure ABSTRACT Getting Started with the SGPLOT Procedure Joshua M. Horstman, Nested Loop Consulting Do you want to create highly-customizable, publication-ready graphics in just minutes using SAS? This workshop

More information

INTRODUCTION TO SAS/GRAPH

INTRODUCTION TO SAS/GRAPH INTRODUCTION TO SAS/GRAPH John J. Cohen Advanced Data Concepts Abstract Opening the SAS/GRAPH manual for the first time can be an intimidating experience. Rudimentary charts and plots seem to require more

More information

UTILIZING SAS TO CREATE A PATIENT'S LIVER ENZYME PROFILE. Erik S. Larsen, Price Waterhouse LLP

UTILIZING SAS TO CREATE A PATIENT'S LIVER ENZYME PROFILE. Erik S. Larsen, Price Waterhouse LLP UTILIZING SAS TO CREATE A PATIENT'S LIVER ENZYME PROFILE Erik S. Larsen, Price Waterhouse LLP In pharmaceutical research and drug development, it is usually necessary to assess the safety of the experimental

More information

HOUR 12. Adding a Chart

HOUR 12. Adding a Chart HOUR 12 Adding a Chart The highlights of this hour are as follows: Reasons for using a chart The chart elements The chart types How to create charts with the Chart Wizard How to work with charts How to

More information

Section 2-2 Frequency Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc

Section 2-2 Frequency Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc Section 2-2 Frequency Distributions Copyright 2010, 2007, 2004 Pearson Education, Inc. 2.1-1 Frequency Distribution Frequency Distribution (or Frequency Table) It shows how a data set is partitioned among

More information

Visual Styles for V9 SAS Output Jeff Cartier, SAS Institute Inc., Cary, NC

Visual Styles for V9 SAS Output Jeff Cartier, SAS Institute Inc., Cary, NC Visual Styles for V9 SAS Output Jeff Cartier, SAS Institute Inc., Cary, NC ABSTRACT In Version 9, SAS Institute will provide an expanded set of Output Delivery System (ODS) styles that can be applied to

More information

The G3GRID Procedure. Overview CHAPTER 30

The G3GRID Procedure. Overview CHAPTER 30 1007 CHAPTER 30 The G3GRID Procedure Overview 1007 Concepts 1009 About the Input Data Set 1009 Multiple Vertical Variables 1009 Horizontal Variables Along a Nonlinear Curve 1009 About the Output Data Set

More information

Innovative Graph for Comparing Central Tendencies and Spread at a Glance

Innovative Graph for Comparing Central Tendencies and Spread at a Glance Paper 140-28 Innovative Graph for Comparing Central Tendencies and Spread at a Glance Varsha C. Shah, CSCC, Dept. of Biostatistics, UNC-CH, Chapel Hill, NC Ravi M. Mathew, CSCC,Dept. of Biostatistics,

More information

Multiple Forest Plots and the SAS System

Multiple Forest Plots and the SAS System Multiple Forest Plots and the SAS System Poster 10 Anne Barfield, Quanticate, Manchester, United Kingdom ABSTRACT This paper is the accompanying paper to the poster entitled Multiple Forest Plots and the

More information

Converting Annotate to ODS Graphics. Is It Possible?

Converting Annotate to ODS Graphics. Is It Possible? ABSTRACT Paper 2686-2015 Converting Annotate to ODS Graphics. Is It Possible? Philip R Holland, Holland Numerics Limited In the previous chapter I described how many standard SAS/GRAPH plots can be converted

More information

Is your picture worth a thousand words? Creating Effective Presentations with SAS/GRAPH

Is your picture worth a thousand words? Creating Effective Presentations with SAS/GRAPH Is your picture worth a thousand words? Creating Effective Presentations with SAS/GRAPH Justina M. Flavin, Pfizer Global Research & Development, La Jolla Laboratories, San Diego, CA Arthur L. Carpenter,

More information

Week 05 Class Activities

Week 05 Class Activities Week 05 Class Activities File: week-05-24sep07.doc Directory (hp/compaq): C:\baileraj\Classes\Fall 2007\sta402\handouts Directory: \\Muserver2\USERS\B\\baileraj\Classes\sta402\handouts Better Graphics

More information

Internet/Intranet, the Web & SAS

Internet/Intranet, the Web & SAS Dynamic Behavior from Static Web Applications Ted Durie, SAS, Overland Park, KS ABSTRACT Many Web applications, because of the infinite query combinations possible, require dynamic Web solutions. This

More information

WORKING IN SGPLOT. Understanding the General Logic of Attributes

WORKING IN SGPLOT. Understanding the General Logic of Attributes WORKING IN SGPLOT Understanding the General Logic of Attributes Graphical Elements in SGPLOT All graphs generated by SGPLOT can be viewed as a collection of elements. Some of the nomenclature of these

More information

Tips for Producing Customized Graphs with SAS/GRAPH Software. Perry Watts, Fox Chase Cancer Center, Philadelphia, PA

Tips for Producing Customized Graphs with SAS/GRAPH Software. Perry Watts, Fox Chase Cancer Center, Philadelphia, PA Tips for Producing Customized Graphs with SAS/GRAPH Software Perry Watts, Fox Chase Cancer Center, Philadelphia, PA Abstract * SAS software is used to produce customized graphics displays by solving a

More information

Introducing Statistical Graphics (SG): Victoria UG May 2018 Mary Harding SAS Canada

Introducing Statistical Graphics (SG): Victoria UG May 2018 Mary Harding SAS Canada Introducing Statistical Graphics (SG): Victoria UG May 2018 Mary Harding SAS Canada Copyright SAS Institute Inc. All rights reserved. Agenda Introduction to Statistical Graphics PROC SGPLOT General purpose

More information

An alternative view.

An alternative view. DATA-ANALYSIS WITH SAS/GRAPH SOFTWARE An alternative view. Henk van der Knaap, Unilever Research Laboratorium Vlaardingen Abstract SAS/GRAP~ software supplies a reasonable number of procedures to present

More information

Effective Forecast Visualization With SAS/GRAPH Samuel T. Croker, Lexington, SC

Effective Forecast Visualization With SAS/GRAPH Samuel T. Croker, Lexington, SC DP01 Effective Forecast Visualization With SAS/GRAPH Samuel T. Croker, Lexington, SC ABSTRACT A statistical forecast is useless without sharp, attractive and informative graphics to present it. It is really

More information

Beginning Tutorials. A Beginner's Guide to Incorporating SAS Output in Microsoft Office Applications Vincent DelGobbo, SAS Institute Inc.

Beginning Tutorials. A Beginner's Guide to Incorporating SAS Output in Microsoft Office Applications Vincent DelGobbo, SAS Institute Inc. A Beginner's Guide to Incorporating SAS Output in Microsoft Office Applications Vincent DelGobbo, SAS Institute Inc., Cary, NC ABSTRACT This paper provides techniques for incorporating the output from

More information

Elementary Statistics

Elementary Statistics 1 Elementary Statistics Introduction Statistics is the collection of methods for planning experiments, obtaining data, and then organizing, summarizing, presenting, analyzing, interpreting, and drawing

More information

Splitting Axis Text. Splitting Text in Axis Tick Mark Values

Splitting Axis Text. Splitting Text in Axis Tick Mark Values CHAPTER 3 Splitting Axis Text Purpose: This chapter describes techniques you can use to split long text into two (or more) lines in your axes. Two techniques are described one to split text in axis tick

More information

- Figure 1 :~!!~'!~,~!!~ MANAGEMENT GRAPHICS IN A QUALITY ASSURANCE ENVIRONMENT. Shirley J. McLelland. SAS Code used to produce the graph,

- Figure 1 :~!!~'!~,~!!~ MANAGEMENT GRAPHICS IN A QUALITY ASSURANCE ENVIRONMENT. Shirley J. McLelland. SAS Code used to produce the graph, MANAGEMENT GRAPHICS IN A QUALITY ASSURANCE ENVIRONMENT ita picture is worth a thousand words" is a familiar cliche. Southern California Edison Quality Assurance Organization is an environment which has

More information

NEW FEATURES IN FOUNDATION SAS 9.4 CYNTHIA JOHNSON CUSTOMER LOYALTY

NEW FEATURES IN FOUNDATION SAS 9.4 CYNTHIA JOHNSON CUSTOMER LOYALTY NEW FEATURES IN FOUNDATION SAS 9.4 CYNTHIA JOHNSON CUSTOMER LOYALTY FOUNDATION SAS WHAT S NEW IN 9.4 Agenda Base SAS SAS/ACCESS Interface to PC Files SAS Support for Hadoop SAS/GRAPH SAS Studio BASE SAS

More information

SparkLines Using SAS and JMP

SparkLines Using SAS and JMP SparkLines Using SAS and JMP Kate Davis, International Center for Finance at Yale, New Haven, CT ABSTRACT Sparklines are intense word-sized graphics for use inline text or on a dashboard that condense

More information

Coders' Corner. Scaling Mount GCHART: Using a MACRO to Dynamically Reset the Scale Nina L. Werner, Dean Health Plan, Inc., Madison, WI.

Coders' Corner. Scaling Mount GCHART: Using a MACRO to Dynamically Reset the Scale Nina L. Werner, Dean Health Plan, Inc., Madison, WI. Paper 111-25 Scaling Mount GCHART: Using a MACRO to Dynamically Reset the Scale Nina L. Werner, Dean Health Plan, Inc., Madison, WI ABSTRACT If you do not set the scale yourself, PROC GCHART will automatically

More information

Volume is m 3 0f H 2. SAS/GRAPH" Odds and Ends; Little Things That Make a Big Difference. Arthur L. Carpenter ABSTRACT TEXT OPTIONS IN TITLES

Volume is m 3 0f H 2. SAS/GRAPH Odds and Ends; Little Things That Make a Big Difference. Arthur L. Carpenter ABSTRACT TEXT OPTIONS IN TITLES SAS/GRAPH" Odds and Ends; Little Things That Make a Big Difference Arthur L. Carpenter ABSTRACT SAS/GRAPH is very flexible and at times it can be very frustrating. Often it seems that those little things

More information

2.1: Frequency Distributions and Their Graphs

2.1: Frequency Distributions and Their Graphs 2.1: Frequency Distributions and Their Graphs Frequency Distribution - way to display data that has many entries - table that shows classes or intervals of data entries and the number of entries in each

More information

1182 Index. batch mode 28 BCOLOR= option TITLE, FOOTNOTE, and NOTE statements

1182 Index. batch mode 28 BCOLOR= option TITLE, FOOTNOTE, and NOTE statements Index 1181 Index A ACROSS= option DONUT statement 561 LEGEND statement 188 PIE/PIE3D statements 561 STAR statement 575 action statements 22 ActiveX controls 104 ADD statement, GDEVICE procedure optional

More information

WORKING IN SGPLOT. Understanding the General Logic of Attributes

WORKING IN SGPLOT. Understanding the General Logic of Attributes WORKING IN SGPLOT Understanding the General Logic of Attributes Graphical Elements in SGPLOT All graphs generated by SGPLOT can be viewed as a collection of elements. Some of the nomenclature of these

More information

8 Organizing and Displaying

8 Organizing and Displaying CHAPTER 8 Organizing and Displaying Data for Comparison Chapter Outline 8.1 BASIC GRAPH TYPES 8.2 DOUBLE LINE GRAPHS 8.3 TWO-SIDED STEM-AND-LEAF PLOTS 8.4 DOUBLE BAR GRAPHS 8.5 DOUBLE BOX-AND-WHISKER PLOTS

More information

6th Grade Math. Parent Handbook

6th Grade Math. Parent Handbook 6th Grade Math Benchmark 3 Parent Handbook This handbook will help your child review material learned this quarter, and will help them prepare for their third Benchmark Test. Please allow your child to

More information

Top Award and First Place Best Presentation of Data Lan Tran-La. Scios Nova, Inc. BLOOD PRESSURE AND HEART RATE vs TIME

Top Award and First Place Best Presentation of Data Lan Tran-La. Scios Nova, Inc. BLOOD PRESSURE AND HEART RATE vs TIME Top Award and First Place Best Presentation of Data Lan Tran-La Scios Nova, Inc. BLOOD PRESSURE AND HEART RATE vs TIME Vital signs were collected before, during, and after the infusion of Drug A. At the

More information

USING GOPTION STATEMENTS FOR PC/SAS GRAPHIC DEVICES. Randy Van Beek South Dakota State University Computing Center

USING GOPTION STATEMENTS FOR PC/SAS GRAPHIC DEVICES. Randy Van Beek South Dakota State University Computing Center USING GOPTION STATEMENTS FOR PC/SAS GRAPHIC DEVICES Randy Van Beek South Dakota State University Computing Center Making Transparencies on HP Colorpro Using GOPTION Statements For PC/SAS Graphic Devices

More information

Graphics. Chapter Overview CHAPTER 4

Graphics. Chapter Overview CHAPTER 4 47 CHAPTER 4 Graphics Chapter Overview 47 Additional Information 48 Producing a Bar Chart 48 Instructions 48 Adding Titles 50 Running the Graph 50 Printing the Graph 51 Exiting This Task 51 Producing a

More information

Budget Report for Lender and Bidder Law. Objectives. Steps: By the end of this lesson, you will be able to:

Budget Report for Lender and Bidder Law. Objectives. Steps: By the end of this lesson, you will be able to: Budget Report for Lender and Bidder Law Objectives By the end of this lesson, you will be able to: Apply Theme to a document Copy charts from Excel to Word Create pivot charts Modify pivot charts Create

More information

The GIMPORT Procedure

The GIMPORT Procedure 705 CHAPTER 17 The GIMPORT Procedure Overview 705 Concepts 706 About Importing Graphics 706 Specifying a Fileref 706 Importing the File 706 CGM Elements Not Supported 707 About Color Mapping 707 About

More information

Making Presentations More Fun with DATA Step Graphics Interface (DSGI) Hui-Ping Chen, Eli Lilly and Company, Indianapolis, Indiana

Making Presentations More Fun with DATA Step Graphics Interface (DSGI) Hui-Ping Chen, Eli Lilly and Company, Indianapolis, Indiana Paper CC03 Making Presentations More Fun with DATA Step Graphics Interface (DSGI) Hui-Ping Chen, Eli Lilly and Company, Indianapolis, Indiana ABSTRACT Microsoft PowerPoint is powerful and most popular

More information

User Manual MS Energy Services

User Manual MS Energy Services User Manual MS Energy Services Table of content Access 4 Log In 4 Home Page 5 Add pre-visualisations 6 Pre-visualisation with variables 7 Multiple pre-visualisations 8 Pre-visualisation window 8 Design

More information

Chapter 10 Working with Graphs and Charts

Chapter 10 Working with Graphs and Charts Chapter 10: Working with Graphs and Charts 163 Chapter 10 Working with Graphs and Charts Most people understand information better when presented as a graph or chart than when they look at the raw data.

More information

Paper SIB-096. Richard A. DeVenezia, Independent Consultant, Remsen, NY

Paper SIB-096. Richard A. DeVenezia, Independent Consultant, Remsen, NY Paper SIB-096 Tag Clouds - A list of tokens, sized by relative frequency Richard A. DeVenezia, Independent Consultant, Remsen, NY Abstract A tag cloud is a list of tokens, wherein the text size of a token

More information

Using MACRO and SAS/GRAPH to Efficiently Assess Distributions. Paul Walker, Capital One

Using MACRO and SAS/GRAPH to Efficiently Assess Distributions. Paul Walker, Capital One Using MACRO and SAS/GRAPH to Efficiently Assess Distributions Paul Walker, Capital One INTRODUCTION A common task in data analysis is assessing the distribution of variables by means of univariate statistics,

More information

Six Cool Things You Can Do In Display Manager Jenine Milum, Charlotte, NC Wachovia Bank

Six Cool Things You Can Do In Display Manager Jenine Milum, Charlotte, NC Wachovia Bank Paper CC-029 Six Cool Things You Can Do In Display Manager Jenine Milum, Charlotte, NC Wachovia Bank ABSTRACT Many people use Display Manager but don t realize how much work it can actually do for you.

More information

Chapter 1 Introduction. Chapter Contents

Chapter 1 Introduction. Chapter Contents Chapter 1 Introduction Chapter Contents OVERVIEW OF SAS/STAT SOFTWARE................... 17 ABOUT THIS BOOK.............................. 17 Chapter Organization............................. 17 Typographical

More information

SAS/GRAPH Blues? SAS/FRAME to the Rescue Kathy Shelley, Iowa State University, Ames, Iowa

SAS/GRAPH Blues? SAS/FRAME to the Rescue Kathy Shelley, Iowa State University, Ames, Iowa SAS/GRAPH Blues? SAS/FRAME to the Rescue {:^( }:^) Kathy Shelley, Iowa State University, Ames, Iowa ABSTRACT This paper shows how SAS/FRAME can be used to automate repetitive graph production, thus enabling

More information

KEY TERMS chart chart body Chart Wizard client object legend PDF XPS

KEY TERMS chart chart body Chart Wizard client object legend PDF XPS LESSON SKILL MATRIX Skill Exam Objective Objective Number Creating a Chart Using the Chart Wizard Add report controls 5.2.5 Formatting a Chart Modify data sources 5.2.4 Changing Chart Types Saving a Database

More information

MATH 117 Statistical Methods for Management I Chapter Two

MATH 117 Statistical Methods for Management I Chapter Two Jubail University College MATH 117 Statistical Methods for Management I Chapter Two There are a wide variety of ways to summarize, organize, and present data: I. Tables 1. Distribution Table (Categorical

More information