请使用python的matplotlib库,绘制折线图,折线图数据为湖北荆州本周最高气温走势,请合理配置图表元素。
时间: 2024-03-10 12:49:40 浏览: 127
python使用matplotlib绘制折线图教程
5星 · 资源好评率100%
好的,我可以帮你绘制折线图,以下是Python的Matplotlib库的代码示例:
```python
import matplotlib.pyplot as plt
# 最高气温数据
temperatures = [17, 18, 21, 23, 26, 29, 30]
# 日期数据
dates = ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
# 绘制折线图
plt.plot(dates, temperatures, marker='o', color='blue', linestyle='--')
# 设置图表标题和坐标轴标签
plt.title('湖北荆州本周最高气温走势', fontsize=16)
plt.xlabel('日期', fontsize=12)
plt.ylabel('最高气温(℃)', fontsize=12)
# 设置坐标轴刻度标记的大小
plt.tick_params(axis='both', labelsize=12)
# 显示图例
plt.legend(['最高气温'], loc='upper right')
# 显示图表
plt.show()
```
运行上述代码,即可生成一张折线图。你可以根据需要调整图表元素的样式和位置。
阅读全文