In [14]:
import numpy as np
import matplotlib.pyplot as plt
In [15]:
a = np.array([[1, 2], [3, 4]])
In [16]:
np.std(a)
Out[16]:
In [17]:
np.mean(a)
Out[17]:
In [22]:
plt.plot(a)
Out[22]:
In [ ]:
In [18]:
b = ([1,2,3,4,5,6,4,5,6,4,5,6,4,5,6,4,5,6,4,5,6,4,5,6,4,5,6,4,5,6,4,5,6,4,5,6,4,5,6,7,8,9])
In [19]:
np.mean(b)
Out[19]:
In [20]:
np.std(b)
Out[20]:
In [21]:
plt.plot(b)
Out[21]: