-, 13 , 13 , . 2 , // /...., , PCA. , - .
, : http://matplotlib.org/api/pyplot_api.html
:
import matplotlib.pyplot as plt
import numpy as np
song1 = np.asarray([1, 2, 3, 4, 5, 6, 2, 35, 4, 1])
song2 = song1*2
song3 = song1*1.5
data = [song1, song2, song3]
def indic(data):
max = np.max(data, axis=1)
min = np.min(data, axis=1)
return max, min
x,y = indic(data)
plt.scatter(x, y, marker='x')
plt.show()
: 
, , : . - parralel, :
import pandas as pd
pd.DataFrame(data).T.plot()
plt.show()
x y. : 
:
Python, :

