我正在尝试用两个 y 轴绘制直方图。
fig, ax = plt.subplots(nrows=2, ncols=2, figsize=(12, 8))
ax2 = ax.twinx()
但这行(ax2 = ax.twinx())
会导致错误:
'numpy.ndarray' object has no attribute 'twinx'
我正在尝试用两个 y 轴绘制直方图。
fig, ax = plt.subplots(nrows=2, ncols=2, figsize=(12, 8))
ax2 = ax.twinx()
但这行(ax2 = ax.twinx())
会导致错误:
'numpy.ndarray' object has no attribute 'twinx'