Answers for "mostrare i grafici matplotlib sulla shell python"

0

mostrare i grafici matplotlib sulla shell python

# scrivi qui il codice

%matplotlib inline
import matplotlib
import matplotlib.pyplot as plt
import numpy as np

x = np.arange(0, 11, 1.)
y = 2*x + 10

plt.plot(x, y, 'bo')
plt.title('Performance Attesa Esame Fisica')
plt.xlabel('Esercizi svolti')
plt.ylabel('Votazione esame')

plt.show()
Posted by: Guest on March-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language