Matplotlib是一个Python的数据可视化库,可以用于创建各种类型的图表,包括条形图和线条图。要在两个不同的轴上显示条形图和线条的图例,可以按照以下步骤进行操作:
import matplotlib.pyplot as plt
import numpy as np
x = np.array([1, 2, 3, 4, 5])
y1 = np.array([10, 20, 30, 40, 50])
y2 = np.array([50, 40, 30, 20, 10])
fig, ax1 = plt.subplots()
ax2 = ax1.twinx()
ax1.bar(x, y1, color='blue', alpha=0.5, label='Bar Chart')
ax2.plot(x, y2, color='red', label='Line Chart')
ax1.legend(loc='upper left')
ax2.legend(loc='upper right')
ax1.set_xlabel('X-axis')
ax1.set_ylabel('Y1-axis')
ax2.set_ylabel('Y2-axis')
plt.title('Bar Chart and Line Chart')
plt.show()
这样就可以在两个不同的轴上显示条形图和线条的图例了。根据具体的需求,可以调整图例的位置、颜色、透明度等属性,以及轴的标签和标题。对于腾讯云相关产品和产品介绍链接地址,可以根据具体情况自行选择适合的产品进行展示。
领取专属 10元无门槛券
手把手带您无忧上云