Previous Up Next

9.2.2  Scatterplots: scatterplot nuaged_points batons

A scatter plot is simply a set of points plotted on axes. The scatterplot command draws scatter plots.
nuage_points is a synonym for scatterplot.


Example.
Input:

scatterplot([[0,0],[1,1],[2,4],[3,9],[4,16]])

or:

scatterplot([0,1,2,3,4],[0,1,4,9,16])

Output:


The batons command will also draw a collection of points, but each point will be connected to the x-axis with a vertical line segment.


Example.
Input:

batons([[0,0],[1,1],[2,4],[3,9],[4,16]])

Output:


Previous Up Next