私はmatplotlibを使ってエラーバープロットを作成しましたが、ズームインせずにすべてを見るには混み合っています。もちろんこれを行うことはできますが、プロットを保存するときにはズームイン残りのデータは失われます。Matplotlibでプロットを小さくする
matplotlibでスクロール可能なプロットを得る方法はありますか?pngとして保存すると、すべてが含まれていますか、データが失われないような他の形式ですか?基本的には、プロットの長さが幅よりもはるかに大きいことを望みます。
私はプロットに使用されるコードは次のとおりです。
plot1_dataerr = get_plot_data_errbars(processed_answers[0][plot_low:]) #the data to be plotted, the zeroth element of this is the labels, the first is the means and the second is the errorbar size
fig, axs = plt.subplots()
fig.subplots_adjust(left=0.2)
axs.set_xlim([1,5])
axs.grid()
axs.errorbar(plot1_dataerr[1],range(len(plot1_dataerr[1])),xerr = plot1_dataerr[2], fmt = 'k o')
axs.yaxis.set_ticks(np.arange(len(plot1_dataerr[1])))
axs.set_yticklabels(plot1_dataerr[0])
そして、ここでは、あなたはそれが非常に混雑し、不明である見ることができるように私は、取得していますプロットである: