Dataframeは、カラムの値が空かどうかを判断します.

513 ワード

  pandas  dataframe  apply   ,          nan    ,                     。
             ,           list,     nan
              
df['label'].isnull()
    :list is not attribute to isnull...

         ,   pd.isnull        。
def car_conf(conf):
    if pd.isnull(conf):
        return []
    else:
        return conf[1]

df['label_new'] = df.apply(lambda x:car_conf(x['label']),axis = 1)