Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can use the list_plot function:

x = [1, 5, 7, 8, 8.7, 10, 13, 15]
y = [2, 8, 13, 10, 9, 6.3, 2, -1]
list_plot(zip(x,y), plotjoined=True)

Se the docs for a complete reference.