Bootstrap

2024年华为杯 研究生数学建模 D题 大数据驱动的地理综合问题 第一问 思路和代码

问题一:降水量与土地利用/覆被类型的时空演化特征

# 导入必要的库
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import geopandas as gpd

# 1. 降水量数据分析
# 读取降水量数据,假设数据为CSV格式,包含列:年份、地点、降水量
rainfall_data = pd.read_csv('rainfall_1990_2020.csv')

# 按年份计算全国平均降水量,最大值,最小值,标准差
rainfall_stats = rainfall_data.groupby('year')['rainfall'].agg(['mean', 'std', 'max', 'min'])

# 生成折线图展示时间演化特征
plt.figure(figsize=(10,6))
plt.plot(rainfall_stats.index, rainfall_stats['mean'], label='Mean Rainfall')
plt.fill_between(rainfall_stats.index, rainfall_stats['min'], rainfall_stats['max'], color='b

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;