Python multiprocessing pandas dataframe gives wrong results from terminal

前端 未结 0 426
一向
一向 2020-12-13 03:12

I have this code:

def run_apply(df, col_name):
    df[col_name] = df.apply(lambda row: 1, axis=1)
    df = df.dropna()
    return df


def process_df(df_file)         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题