我想在一个图中做两个(子)图,第一个我想在第二个线性-对数比例上做对数-对数比例。我怎么做呢?下面的代码不起作用。
figure, (ax1,ax2) = plt.subplots(1, 2)
plt.xscale("log")
plt.yscale("log")
ax1.plot(indices,pi_singal,linestyle='-')
plt.xscale("log")
plt.yscale("linear")
ax2.plot(indices,max_n_for_f)
plt.show()
1条答案
按热度按时间e5nqia271#
2个并排地块的示例