Ask Your Question

Revision history [back]

You can plot various points on a picture by adding together point plots:

sage: point((1,2)) + point((3,4))

You can also do:

sage: points([(1,2), (3,4)])

You can also have a look at:

sage: bar_chart?

You can plot various points on a picture by adding together point plots:

sage: point((1,2)) + point((3,4))

You can also do:

sage: points([(1,2), (3,4)])

You can also have a look at:

sage: bar_chart?

Now, if you have a list of values, you can make boxes (representing intervals), and count how many points fall within each box, and then draw the result. Please do not hesitate to ask for more details if you are locked somewhere.