Previous Page | Next Page

The CHART Procedure

Syntax: CHART Procedure


Requirement: You must use at least one of the chart-producing statements.
Tip: Supports the Output Delivery System. See Output Delivery System: Basic Concepts in SAS Output Delivery System: User's Guide for details.
Tip: You can use the ATTRIB, FORMAT, LABEL, and WHERE statements. See Statements with the Same Function in Multiple Procedures for details. You can also use any global statements. See Global Statements for a list.
Table of Contents: The CHART Procedure

PROC CHART <option(s)>;
BLOCK variable(s) </ option(s)>;
BY <DESCENDING> variable-1
<...<DESCENDING> variable-n>
<NOTSORTED>;
HBAR variable(s) </ option(s)>;
PIE variable(s) </ option(s)>;
STAR variable(s) </ option(s)>;
VBAR variable(s) </ option(s)>;

Task Statement
Produce a chart PROC CHART
Produce a block chart BLOCK
Produce a separate chart for each BY group BY
Produce a horizontal bar chart HBAR
Produce a PIE chart PIE
Produce a STAR chart STAR
Produce a vertical bar chart VBAR

Previous Page | Next Page | Top of Page