ノート
完全なサンプルコードをダウンロードするには、ここをクリックしてください
キーワードによるプロット#
文字列を使用して特定の変数にアクセスできる形式のデータがある場合があります。たとえば、
numpy.recarray
またはpandas.DataFrame
.
Matplotlib では、そのようなオブジェクトにdata
キーワード引数を指定できます。提供されている場合、これらの変数に対応する文字列を使用してプロットを生成できます。
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(19680801)
data = {'a': np.arange(50),
'c': np.random.randint(0, 50, 50),
'd': np.random.randn(50)}
data['b'] = data['a'] + 10 * np.random.randn(50)
data['d'] = np.abs(data['d']) * 100
fig, ax = plt.subplots()
ax.scatter('a', 'b', c='c', s='d', data=data)
ax.set(xlabel='entry a', ylabel='entry b')
plt.show()