'Find sum of each month Pandas

df = pd.read_csv("wind_data.csv")
df = df[['SETTLEMENTDATE', 'wind']].copy()

dataset = df.set_index("SETTLEMENTDATE")
dataset.index = pd.to_datetime(dataset.index)
print(dataset.head())
print(dataset.shape)

Dataset

enter image description here

In this dataset I want to calculate wind data for each month. (I need only 12 rows of this data set instead 105350)

Can you please help me?



Solution 1:[1]

Use DataFrame.resample:

dataset.resample('M')['wind'].sum()

Solution 2:[2]

One way using a groupby:

df = pd.read_csv("wind_data.csv")
df = df[['SETTLEMENTDATE', 'wind']].copy()

dataset['SETTLEMENTMONTH'] = pd.to_datetime(dataset['SETTLEMENTDATE']).dt.floor('M')

dataset.groupby('SETTLEMENTMONTH')['wind'].sum()

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 ansev
Solution 2