matplotlibフィギュアがシリアル化できるようにするための討議があります。私は、これが対処されている、あるいは目標として受け入れられているという報告は何も見ていない。ですから、memcachedにそれらを送信しようとすると、明らかに失敗するでしょう。検索時に見つかった議論は、現在のmatplotlibの設計がこの目標に容易に応えることができず、内部のリファクタリングが必要であることを示唆しています。参照:http://old.nabble.com/matplotlib-figure-serialization-td28016714.html
実行時間を大幅に短縮するには、データをデータセットに再編成し、ax.bar()
を1回だけ呼び出します。その後、データセットをシリアル化して、必要な形式(memcachedなど)で保存できます。
ここでは、アプローチとデータセットを組み合わせたアプローチの間のテストを示すコード例を示します。 https://gist.github.com/2597804
import matplotlib.pyplot as plt
from random import randint
from time import time
DATA = [
(i, randint(5,30), randint(5,30), randint(30,35), randint(1,5)) \
for i in xrange(1, 401)
]
def mapValues(group):
ind, open_, close, high, low = group
if open_ > close: # if open is higher then close
height = open_ - close # heigth is drawn at bottom+height
bottom = close
yerr = (open_ - low, high - open_)
color = 'r' # plot as a white barr
else:
height = close - open_ # heigth is drawn at bottom+height
bottom = open_
yerr = (close - low, high - close)
color = 'g' # plot as a black bar
return (ind, height, bottom, yerr, color)
#
# Test 1
#
def test1():
fig = plt.figure()
ax = fig.add_subplot(111)
data = map(mapValues, DATA)
start = time()
for group in data:
ind, height, bottom, yerr, color = group
ax.bar(left=ind, height=height, bottom=bottom, yerr=zip(yerr),
color=color, ecolor='k', zorder=10,
error_kw={'barsabove': False, 'zorder': 0, 'capsize': 0},
alpha=1)
return time()-start
#
# Test 2
#
def test2():
fig = plt.figure()
ax = fig.add_subplot(111)
# plotData can be serialized
plotData = zip(*map(mapValues, DATA))
ind, height, bottom, yerr, color = plotData
start = time()
ax.bar(left=ind, height=height, bottom=bottom, yerr=zip(*yerr),
color=color, ecolor='k', zorder=10,
error_kw={'barsabove': False, 'zorder': 0, 'capsize': 0},
alpha=1)
return time()-start
def doTest(fn):
end = fn()
print "%s - Sec: %0.3f, ms: %0d" % (fn.__name__, end, end*1000)
if __name__ == "__main__":
doTest(test1)
doTest(test2)
# plt.show()
結果::
python plot.py
test1 - Sec: 1.592, ms: 1592
test2 - Sec: 0.358, ms: 357
データ構造は3秒かかりますかmatplotlibで実際のプロットですか?以前はこのことについて議論があり、matplotlibをシリアライズ可能にするという点では何も行われていなかったようです。 – jdi
Matplotlibプロッティング。彼らの燭台のプロットが吸うので、私は個々のバーを使用して燭台のチャートをプロットしています。そして、私はリスト(diff色、値、エラーバー)を使って作業するバーを得ることができないので、私は各バーを個別にループ(約400項目)を追加しています。サンプルスクリプトはこちら:http://pastebin.com/6aD8YZfM。バーの最終セットをキャッシュすることができれば、時間はそれほど重要ではありません。 – NoviceCoding
そのサンプルループでは、軸の作成に時間がかかりますか?そして、それを400回実行すると、3秒かかる軸のコレクションが生成されますか? – jdi