Python how to convert monthly employment data into annual, csv, panda

99 Views Asked by At

I've been stuck on this problem for two days. Below is the csv file.

df = pd.read_csv('/14100017.csv')
df = pd.DataFrame(data)
df.head()
df_year = df.groupby('REF_DATE')['REF_DATE'].count()
print(df_year)

This is my code. Could you please tell me or give me a hint or show me the website has similar questions. How to convert monthly employment data into annual by taking average? This is so confused.

Thank you very much! Much appreciated

I tried search similar questions in reddit forum and Stack overflow, they all used rsample and get the result.

1

There are 1 best solutions below

4
On

Just convert REF_DATE to datetime and then extract year:

df['date'] = pd.to_datetime(df['REF_DATE'])
df['year'] = pd.DatetimeIndex(df['date']).year

After, you need to aggregate the value by year:

monthly_year_avg = df.groupby('year')['VALUE'].mean()