First time here? Check out the FAQ!
answered 2019-07-02 11:47:12 +0100
You can use the list_plot function:
list_plot
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.