【发布时间】:2016-07-06 09:08:08
【问题描述】:
我有两组线性相关的值。因此,我只需要一个具有正确比例的第二个 y 轴的图形。
最优雅的方法是什么?
只制作两个条形图会给我一个重叠:
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(4)
y2 = np.array([23, 32, 24, 28])
y1 = 4.2 * y2
fig = plt.figure(1, figsize=(6,6))
ax = fig.add_subplot(111)
ax.bar(x, y2)
ax.set_ylabel('Consumption in $m^3$')
ax2 = ax.twinx()
ax2.bar(x, y1, alpha=0.5)
ax2.set_ylabel('Consumption in EUR')
plt.savefig('watercomsumption.png', format='png', bbox_inches="tight")
非常感谢! :-)
编辑:
我可能不清楚。我想制作一个 single 图表。
类似于以下内容。但是有没有比两次调用 bar 函数并用alpha=0 隐藏它更优雅的方法?
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(4)
y2 = np.array([23, 32, 24, 28])
y1 = 4.2 * y2
y2max = np.max(y2) * 1.1
fig = plt.figure(1, figsize=(6,6))
ax = fig.add_subplot(111)
ax.bar(x, y2)
ax.set_ylabel('Consumption in $m^3$')
ax2 = ax.twinx()
ax2.bar(x, y1, alpha=0)
ax2.set_ylabel('Consumption in EUR')
ax.set_ylim(ymax=y2max)
ax2.set_ylim(ymax=4.2*y2max)
plt.savefig('watercomsumption.png', format='png', bbox_inches="tight")
【问题讨论】:
标签: python matplotlib bar-chart