User Guide > Creating and Querying Tables > Plotting Table Data
  

Plotting Table Data
You can plot table data easily using the plot procedures. For example, the following example plots the call duration vs. the cost. The PLOT statement accesses the columns of the table directly, using the basic structure notation, which is:
Variable_Name.Tag_Name
For more information on the relationship between structures and tables, see "Tables and Structures".
This command produces a scattergram that plots the call duration on the X axis against the cost along the Y axis:
PLOT, phone_data.DUR, phone_data.COST, Psym = 4, $
Title = 'Duration vs. Cost', $
XTitle = 'Duration', YTitle = 'Cost'
 
Figure 9-1: Table Data Plot

Version 2017.1
Copyright © 2019, Rogue Wave Software, Inc. All Rights Reserved.