AreaChart - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Statistics

  

AreaChart

  

create area charts from data

 

Calling Sequence

Parameters

Description

Options

Examples

Calling Sequence

AreaChart(X, options, plotoptions)

AreaChart['interactive'](X)

Parameters

X

-

data

options

-

(optional) equation(s) of the form option=value where option is one of color, format, markers, orientation, scale, or xcoords; specify options for generating the area chart

plotoptions

-

options to be passed to the plots[display] command

Description

• 

The AreaChart command generates an area chart for the specified data. Several formats are available for multiple data sets: default, stacked and percent stacked. See format option below for more information.

• 

The first parameter X is either a single data sample - given as e.g. a Vector - or a list of data samples. Note that the individual samples may be of variable size.

• 

If the ['interactive'] option is used, then a dialog box appears that allows for customized creation of the plot.

Options

  

The options argument can contain one or more of the options shown below. All unrecognized options will be passed to the plots[display] command. See the plot/options and plot3d/options help pages for details.

• 

color=name, list, or range

  

This option specifies colors for the individual data sets.  When a list of colors is given, each of the areas is colored with the corresponding color in the list. If a range of colors is given, the colors are generated by selecting an appropriate number of equally spaced points in the corresponding hue range.

• 

format=default or stacked

  

By default, individual data sets are displayed side-by-side as 3-D polygons. A stacked area chart shows related data groups, one on top of the other. A percent area chart is similar to a stacked area chart, except that it is rescaled to a height of 1 while preserving proportionality. If scale is set to relative and format is set to stacked then a percent stacked is generated.

• 

markers=true or false

  

This option specifies whether the original data points appear on the plot. The default value is true.

• 

orientation=vertical or horizontal

  

This option specifies whether the vertical or the horizontal layout is used. The default value is vertical.

• 

scale=absolute or relative

  

This option controls whether the absolute or relative data scale is used. If scale is set to relative and format is set to default then all data samples are rescaled so that their range belongs to an interval between -1 and 1. If scale is set to relative and format is set to stacked then a percent stacked plot is generated.

• 

xcoords=default, list

  

This option specifies the x-coordinates of the data points. By default, the x-coordinates of the points are 1, 2, 3, ...

Examples

withStatistics:

A1,2,3,4,2,3,1:

B1,5,1,0,2,1,1:

C1,2,1,3,1,4,2:

The command to create the plot from the Plotting Guide using the above data is

AreaChartA,B,C

Plot options such as background color or gridlines are passed to the plots:-display command:

AreaChartA,B,C,format=stacked,gridlines=true,background=LightGrey

The AreaChart command also accepts a Matrix. The columns are understood as individual data samples.

MA|B|C

M

(1)

AreaChartM

The command to create the plot from the Plotting Guide using the above data is

AreaChartM,format=stacked,scale=relative,color=Maroon..Goldenrod,title=Percent Stacked Area Chart

A5,2,5,8,4,5,10,5:

AreaChartA,color=Blue,transparency=0.5,thickness=3,symbol=solidcircle,symbolsize=15,legend=Data Set A

There are several example datasets in Maple's data directory that can be read in using the Import command:

dataImportdatasets/air_passengers.csv,base=datadir,output=Matrix2..,2

p1AreaChartdata,transparency=0.3,symbolsize=10,symbol=solidbox,font=Calibri,16,tickmarks=default,0,300,600,size=800,golden

The following adds a line showing the mean value for the data:

plots:-displayp1,plotMeandata,0..numelemsdata,linestyle=dot,color=Red,legend=Mean

See Also

plot/option

plot3d/option

Statistics

Statistics/Visualization

Statistics[LineChart]

Statistics[PointPlot]