Matplotlib =使いやすさ、Gnuplot =(やや優れた)パフォーマンス
私はこの投稿が古くて答えられていることを知っていますが、私は通りかかっていて、2セントを入れたかったのです。これが私の結論です。それほど大きくないデータセットがある場合は、Matplotlibを使用する必要があります。それは簡単で見栄えがします。しかし、あなたが本当にパフォーマンス必要な場合は、Gnuplotを使用できます。私はあなたのマシンでそれをテストし、それが本当の違いをもたらすかどうか自分で確かめるためにいくつかのコードを追加しました(これは本当のパフォーマンスベンチマークではありませんが、最初のアイデアを与えるはずです)。
次のグラフは、以下に必要な時間(秒単位)を表しています。
- ランダムな散布図をプロットする
- グラフをpngファイルに保存します
構成:
- gnuplot:5.2.2
- gnuplot-py:1.8
- matplotlib:2.1.2
古いバージョンのライブラリを備えた古いコンピューターで実行すると、パフォーマンスのギャップがはるかに大きくなることを覚えています(大きな散布図の場合は最大30秒の差)。
さらに、コメントで述べたように、同等の品質のプロットを得ることができます。しかし、Gnuplotでそれを行うには、それにもっと汗を流す必要があります。
マシンでグラフを試してみたい場合は、グラフを生成するコードを次に示します。
from timeit import default_timer as timer
import matplotlib.pyplot as plt
import Gnuplot, Gnuplot.funcutils
import numpy as np
import sys
import os
def mPlotAndSave(x, y):
plt.scatter(x, y)
plt.savefig('mtmp.png')
plt.clf()
def gPlotAndSave(data, g):
g("set output 'gtmp.png'")
g.plot(data)
g("clear")
def cleanup():
try:
os.remove('gtmp.png')
except OSError:
pass
try:
os.remove('mtmp.png')
except OSError:
pass
begin = 2
end = 500000
step = 10000
numberOfPoints = range(begin, end, step)
n = len(numberOfPoints)
gnuplotTime = []
matplotlibTime = []
progressBarWidth = 30
g = Gnuplot.Gnuplot()
g("set terminal png size 640,480")
plt.clf()
for idx, val in enumerate(numberOfPoints):
sys.stdout.write('\r')
progress = (idx+1)*progressBarWidth/n
bar = "▕" + "▇"*progress + "▁"*(progressBarWidth-progress) + "▏" + str(idx) + "/" + str(n-1)
sys.stdout.write(bar)
sys.stdout.flush()
x = np.random.randint(sys.maxint, size=val)
y = np.random.randint(sys.maxint, size=val)
gdata = zip(x,y)
start = timer()
mPlotAndSave(x, y)
end = timer()
matplotlibTime.append(end - start)
start = timer()
gPlotAndSave(gdata, g)
end = timer()
gnuplotTime.append(end - start)
cleanup()
del g
sys.stdout.write('\n')
plt.plot(numberOfPoints, gnuplotTime, label="gnuplot")
plt.plot(numberOfPoints, matplotlibTime, label="matplotlib")
plt.legend(loc='upper right')
plt.xlabel('Number of points in the scatter graph')
plt.ylabel('Execution time (s)')
plt.savefig('execution.png')
plt.show()