我是大熊猫的新手,我偶然发现了一个数据集,其中包含了从1990年到2017年季节性的Kings County失业率。目前数据框如下所示: Image of my current dataset
虽然没有显示,但列表一直持续到1990年。 我能做些什么来结合每年的所有月份来找出每年的平均失业率?
我为可怜的问题格式道歉是否会有一个代码将输出面积,年份和失业率?谢谢
答案 0 :(得分:0)
如果您的数据框被调用df
:
# Make a new column with unemployment rate as a float, rather than a formatted string with % symbol
df['Unemployment Rate float'] = df['Unemployed'] / df['Labor Force']
# Group by year, and get the mean of the "unemployment rate float" column
df.groupby('Year').mean()['Unemployment Rate Float']
我可以建议pandas
tour吗?