我的输出有未知错误

时间:2019-12-03 08:45:11

标签: python pandas

我遇到功能 def custom_apply(row)不能正常工作的问题。我想将'Kriterij1'行中的两个不同的列连接在一起

将熊猫作为pd导入     将numpy导入为np

df = pd.read_excel("oktober.xlsx",header = None, skiprows=2)
df.columns = ['Število', 'Čas F','Kriterij1', 'Čas L', 'Kriterij 2', 'Čas I','Določen čas cikla', 'Dejanski čas cikla', 'Število', 'Blokirana forma', 'Vzrok']


a= df[df.Kriterij1.isin(['Description :', 63])]
def custom_apply(row):
    if row['Kriterij1'] == 'Description :':
        return row['Čas F']
    else:
        return row['Kriterij1']

df['Slabe'] = df.apply(custom_apply, axis=1)
a

表: enter image description here

但是输出无法正常工作

enter image description here

0 个答案:

没有答案