图 a 图b |
import pandas as pd
import matplotlib.pyplot as plt
plt.rcParams["font.sans-serif"] = ["Simhei"]
df=pd.read_excel ("空气质量.xlsx")
df=df.head(24*7)
df_ave=df.groupby("日期",as_index=False). #日平均 AQI
df_sort=df_ave.sort_values("AQI",ascending= )
plt.bar ( ,df_sort["AQI"],label="日均空气质量指数")
plt.legend()
plt.xlabel("日期")
plt.ylabel("AQI 值")
plt.title("湖州市 11 月第 1 周日均空气质量指数对比")
plt.show ()