Google Colaboratory はオンラインの Python 開発環境. 使用するには Google アカウントが必要
https://colab.research.google.com
N はデータ数.c は平均.corv は分散共分散行列.
20 個のデータがプロットされている
%matplotlib inline
import matplotlib.pyplot as plt
import warnings
warnings.filterwarnings('ignore') # Suppress Matplotlib warnings
plt.style.use('ggplot')
plt.plot(a[:,0], a[:,1], 'ro')
plt.show()