我需要比较一列中的两行并将其输出到另一列。从某种意义上说,我拥有一场比赛的最终得分,每支球队都在排行榜上列出其他数据。我想创建一个列以标记获胜者“ W”和失败者“ L”的列。
我尝试过
df2.iloc[0, 3].where(df2.iloc[0, 2] > df2.iloc[1, 2], 'W', inplace = True)
和
df2.iloc[0, 3] = df2.where(df2.iloc[0, 2] > df2.iloc[1, 2], df.iloc[0, 3] =='W', inplace = True)
除其他尝试外,我遇到的两个最常见的错误是: AttributeError:“ str”对象没有属性“ where” 和 ValueError:条件数组必须与self的形状相同
Tm H/A Final W/L/T
SFO A 16 T
NYG H 13 T
df1 = pd.read_csv('20020905_nyg_scoring.csv', header = 0, index_col = 0)
df1.drop(['Detail', 'Quarter', 'Time', 'Tm'], axis = 1, inplace = True)
df2 = pd.read_csv('20020905_nyg_team_stats.csv', header = 0, index_col = 1)
df2.drop('Unnamed: 0', axis = 1, inplace = True)
df2 = df2.transpose()
df2.reset_index(inplace = True)
df2.rename(columns = {'index':'Tm'}, inplace = True)
df2.insert(1, 'H/A', ['A', 'H'])
df2.insert(2, 'Final', (df1.iloc[-1, 0], df1.iloc[-1, 1]))
df2.insert(3, 'W/L/T', 'T')
pd.to_numeric(df2['Final'])
df2.iloc[0, 3].where(df2.iloc[0, 2] > df2.iloc[1, 2], 'W', inplace = True)
print(df2)
最终,在W / L / T下,预期结果应该给我SFO线的W和NYG线的L。
答案 0 :(得分:0)
使用np.where
来获取W
和L
,并使用if
语句来检查是否平局,如果是,则分配T
:
df['W/L/T'] = np.where(df['Final'] > df['Final'].shift(-1), 'W', 'L')
if (df['Final'].shift() == df['Final']).any():
df['W/L/T'] = 'T'
print(df)
输出:
Tm H/A Final W/L/T
0 SFO A 16 W
1 NYG H 13 L