0
私はIPythonノートブックを使用しています。私は同じ数字のプロットの束を持っています。 私は、次の4つのケースについて異なる軸パラメータ、すなわち、使用してこれらのプロットを表示する必要があります。さまざまな軸パラメータに対してpyplotを何度も再描画する方法
Cases x-axis y-axis
1 non-log non-log
2 non-log log
3 log non-log
4 log log
は、このような簡単な方法があります:
#many lines of code for generating bunch of plots
plt.show()
#figure shown with non-log axis
ax.set_yscale('log')
plt.show()
#figure shown with log y-axis
ax.set_xscale('log')
plt.show()
#figure shown with log x-axis and log y-axis