當我繪製圖像時,我的導航工具欄(放大,前進,後退...)不可見。我幫助自己的這個鏈接:disable matplotlib toolbar。我已經第一次嘗試:Matplotlib導航工具欄不可見
import matplotlib as mpl mpl.rcParams['toolbar'] = 'toolbar2'
如果文件本身被設置爲'None'
但它不是還檢查。 我也許忘了安裝一些軟件包?即使我沒有得到任何錯誤。
有沒有放大的另一種方式,看光標的座標,因爲這就是我所需要的。
編輯1
這是我使用的代碼。我只複製了那部分,我使用情節。
#___plotting part___
import matplotlib as mpl
mpl.rcParams['toolbar'] = 'toolbar2'
import matplotlib.pyplot as plt
plt.ion()
fig, ax = plt.subplots(figsize=(20, 10))
ax.set_title(plot_titel, loc='center', fontname=font_name, fontsize=16, color='black')
ax.set_xlabel('Column number', fontname=font_name, fontsize=16, color='black')
ax.set_ylabel('Mean of raw backscatter', fontname=font_name, fontsize=16, color='black')
ax.plot(range(len(param_image)), param_image, c='black', marker='o')
ax.plot(idx1[0], param_image[idx1], c='red', mec='red', marker='o', linestyle='')
ax.plot(idx2, param_image[idx2], c='blue', mec='blue', marker='o', linestyle='')
ax.grid()
fig.tight_layout()
plt.show()
什麼是你的matplotlib版本? – mico
matplotlib版本是1.5.1 – Mapa
好的,那麼它應該至少兼容。不能多說,我對matplotlib不太熟悉。 – mico