题型:综合题 题类: 难易度:困难
浙江省七彩阳光联盟2023-2024学年高三上学期第一次联考信息技术试题
图 a
请回答下列问题:
图 b | 图 c |
import pandas as pd
x, y_max, y_min = [''] * 12, [0] * 12, [0] * 12 for i in range(12):
file = "2022"
if i < 9 :
file += "0"
file += str(i+1) + ".xlsx"
df = pd.read_excel(file)
df1 = df.("日",as_index = False)
ma = df1.max().气温#分组后求最大值
mi = df1.min().气温#分组后求最小值
x[i] = +" 月 "
y_max[i] = ma.mean()#求平均
y_min[i] = mi.mean()
plt.plot(x, y_max, label='最高温度')#绘制折线图plt.plot(x, y_min, label='最低温度')
#设置绘图参数,显示如图c 所示线型图,代码略
试题篮