如何在python中绘制semilog图?日志中的X轴和线性的y轴。目前我在plooting阶段vs omega,我需要y轴线性,而x轴在log。哇,我可以在python中做到吗?
答案 0 :(得分:6)
使用semilogx
,如文档here
一个简单的例子:
import matplotlib.pyplot as plt
plt.semilogx([1, 10, 100], [1, 10, 100])
plt.xlabel("Omega")
plt.ylabel("phase")
plt.show()