图a
import pandas as pd
import matplotlib.pyplot as plt
df=pd.read_excel("ymjz.xlsx")
#输出功能:输出接种台数大于2的接种单位名称
df1=df[ ]
print(df1.单位)
#统计功能:统计各区县的医务人员数量
g=df.groupby("区县",as_index=False)["医务人员数"]
df2=
print(df2)
#分析功能:分析本市各类别(常规、方舱、医疗临时点、校企临时点、其他)接种单位的数量情况并制作图表呈现
g=df.groupby("类别",as_index=False)
df3=g.count()
df3=
plt. (df3.类别,df3.单位)
plt.show()
图b