list_plot( [ points ] )

The plot in SageMath of the list of data points. The list typically consists of two- or three-dimensional lists or tuples. Alternatively a list of numbers will be plotted at equal intervals.

In addition to options available to all plots, list_plot has the important option

plotjoined=True|False

Examples:

points = [[cos(t),sin(t)] for t in srange(0,2*pi,.1)]
show( list_plot( points, plotjoined=True, aspect_ratio=1,
                 figsize=[4.5,2], color=(0,.5,1) ) )

Related operations:   plot

Operation category: output operations sagemath-docs