题型:综合题 题类: 难易度:普通
浙江省绍兴市重点中学2022-2023学年高二下学期信息技术6月学考模拟试卷
图 a
图 b |
图 c |
import pandas as pd
import matplotlib.pyplot as plt
#图表显示中文字体,代码略
df=pd.read_excel("day.xlsx") #读取 Excel 文件中的数据
data=[]
for t in df["时间"]: #从“时间”格式中提取日期数据
data.append( )
df["日期"]=data #添加一列数据, 列标题为“日期”
df1=df.groupby("日期", as_index=False).mean()
x=df1["日期"]
y=
plt.ylim(10,30) #设置 y 轴的坐标范围
plt.title("4 月中旬土壤日平均湿度变化情况") #设置图表标题
plt.plot(x,y) #绘制折线图
plt.show()
试题篮