1
對於diff
列中的每個範圍[0, 150]
,我希望創建一個組列,每次範圍重置時都會增加1。當diff
爲負值時,範圍重置。Python:基於整數值範圍在Pandas數據框中創建組列。
import pandas as pd
df = pd.DataFrame({'year': [2016, 2016, 2016, 2016, 2016, 2016, 2016],
'month' : [1, 1, 2, 3, 3, 3, 3],
'day': [23, 25, 1, 1, 7, 20, 30]})
df = pd.to_datetime(df)
df = pd.concat([df, pd.Series(data=[15, 35, 80, 5, 20, 45, 90])], axis=1)
df.columns = ['date', 'percentworn']
col_shift = ['percentworn']
df_shift = df.shift(1).loc[:, col_shift]
df_combined = df.join(df_shift, how='inner', rsuffix='_2')
df_combined.fillna(value=0,inplace=True)
df_combined['diff'] = df_combined['percentworn'] - df_combined['percentworn_2']
的grp
列應具有0, 0, 0, 1, 1, 1, 1
。我試過的代碼是
def grping(df):
df_ = df.copy(deep=True)
i = 0
if df_['diff'] >= 0:
df_['grp'] = i
else:
i += 1
df_['grp'] = i
return df_
df_combined.apply(grping,axis=1)
我需要i += 1
增加後仍然存在。我怎樣才能做到這一點?還是有更好的方法來獲得理想的結果?
謝謝,那就是我一直在尋找的。 – dustin
只好等5分鐘 – dustin