我製作了一個使用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])