mostrare i grafici matplotlib sulla shell python

Solutions on MaxInterview for mostrare i grafici matplotlib sulla shell python by the best coders in the world

showing results for - "mostrare i grafici matplotlib sulla shell python"
Daire
27 Sep 2016
1# scrivi qui il codice
2
3%matplotlib inline
4import matplotlib
5import matplotlib.pyplot as plt
6import numpy as np
7
8x = np.arange(0, 11, 1.)
9y = 2*x + 10
10
11plt.plot(x, y, 'bo')
12plt.title('Performance Attesa Esame Fisica')
13plt.xlabel('Esercizi svolti')
14plt.ylabel('Votazione esame')
15
16plt.show()
17
18
similar questions