scatter.py

Created by parisseb

Created on February 04, 2020

184 Bytes

Démo nuage de points à la matplotlib, nécessite KhiCAS


from matplotlib import *
x=[100,110,120,130,140,150,160]
y=[105,95,75,68,53,46,31]
scatter(x,y)

axis(80,170,10,130)
text(110,125,"Nombre d'acheteurs vs prix de vente")