matplotlib绘制双折线图设置标题,X轴、Y轴标签,女性颜色为红色,男性为蓝色,要求在右上角添加图例案例
时间: 2024-02-23 20:01:29 浏览: 79
Python matplotlib 绘制双Y轴曲线图的示例代码
好的,这是一个绘制双折线图并设置相关属性的例子,代码如下:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
male = [20, 25, 30, 35, 40]
female = [15, 18, 25, 30, 35]
# 绘图
plt.plot(x, male, color='blue', label='Male')
plt.plot(x, female, color='red', label='Female')
# 设置标题、标签
plt.title('Gender Distribution')
plt.xlabel('Age')
plt.ylabel('Population')
# 添加图例
plt.legend(loc='upper right')
# 显示图形
plt.show()
```
解释一下代码:
首先定义了 x 轴和两个数据序列 male 和 female。
然后使用 `plt.plot()` 函数绘制两条折线,分别对应男性和女性,使用 `color` 参数来设置颜色。
接着使用 `plt.title()`、`plt.xlabel()`、`plt.ylabel()` 函数设置标题、X 轴和 Y 轴的标签。
最后使用 `plt.legend()` 函数添加图例,其中 `loc` 参数设置图例的位置为右上角。
最后使用 `plt.show()` 函数显示图形。
阅读全文