mostrare i grafici matplotlib sulla shell python code example
Example: 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()