dimanche 24 mai 2020

How to take out x and y from my list so I can use it to create a graph

So I made my list but after that I don't know how to take out of it my x and y so I can use it later to create a graph

import random
import numpy as np
import matplotlib.pyplot as plt

tabuletson = []

for i in range(0, 10):
    x = round(random.uniform(-1000,1000),2)
    y = (2*x+1)
    tabuletson.append([x,y])

print(tabuletson)

wielomian = np.poly1d(np.polyfit(x,y,3))
linia = np.linspace(-2000,2000,2000)

plt.scatter(x,y)
plt.plot(linia,wielomian(linia))
plt.show()



Aucun commentaire:

Enregistrer un commentaire