我用列名替换了值1,但是无法删除其他值并更改其结构。
new_df = df.replace(1, pd.Series(df.columns, df.columns))
答案 0 :(得分:2)
#read the columns
new_df = df.apply(lambda x: x.index[x!=0].tolist(),axis=1)
#maximum number of entries
max_cols=new_df.apply(len).max()
#create a new dataframe and pad the entries for missing values
new_df=pd.DataFrame(new_df.apply(lambda x: x+['']*(max_cols-len(x))).to_dict()).transpose()
#write to csv
new_df.to_csv('new_csv.csv')