t = linspace(0, 0.8, 251)
plt.plot(array1, array2, '-g', label='label1')
? При помощи pyplot? import matplotlib.pyplot as plt
import numpy as np
t = np.linspace(0, np.pi, 314)
y = np.sin(t)
plt.figure(1)
plt.plot(t, y, '-g')
plt.plot(t[100:150:5], y[100:150:5], 'og')
plt.plot(t[::10], y[::10], '*r')
plt.show()