matplotlib学习之使用多个坐标轴

import matplotlib.pyplot as plt
import matplotlib
import numpy as np

x = np.arange(-5,5)
fg = plt.figure()
ax = fg.add_subplot(111)
ax.plot(x,x*x)
ax2 = ax.twinx()#添加坐标轴
ax2.plot(x,x,"r")
plt.show()

matplotlib学习之使用多个坐标轴_第1张图片

你可能感兴趣的:(数据分析,python)