用Python编写程序完成如下功能: 1 使用DataFrame创建如图所示二维表,表示高考三天的天气指标:温度,风力,pm2.5 2 显示二维表基本统计信息 3 绘制温度折线图 4 新增一行,生成高考这几天天气指标的平均值 5 保存当前二维表df到当前目录,存为weather.csv
时间: 2024-03-26 21:35:24 浏览: 74
Meteorological-data-analysis对气象数据进行分析与可视化,Python 实现气象数据分析
好的,以下是实现以上功能的Python代码:
```python
import pandas as pd
import matplotlib.pyplot as plt
# 1. 使用DataFrame创建二维表
data = {'Day 1': [28, 4, 35], 'Day 2': [30, 3, 44], 'Day 3': [32, 5, 59]}
df = pd.DataFrame(data, index=['Temperature', 'Wind', 'PM2.5'])
print(df)
# 2. 显示二维表基本统计信息
print(df.describe())
# 3. 绘制温度折线图
df.loc['Temperature'].plot(kind='line')
plt.title('Temperature of Three Days')
plt.xlabel('Day')
plt.ylabel('Temperature')
plt.show()
# 4. 新增一行,生成高考这几天天气指标的平均值
df.loc['Average'] = df.mean(axis=0)
print(df)
# 5. 保存当前二维表df到当前目录,存为weather.csv
df.to_csv('weather.csv')
```
运行上述代码后,会依次输出二维表、基本统计信息、温度折线图和新增一行后的二维表,并将二维表保存为weather.csv文件。
阅读全文