简体   繁体   中英

create multiple rows if a column has more than one value in a dataframe

I have a df like below:-

import pandas as pd 
  
# intialise data of lists. 
data = {'cust':['fnwp', 'utp'], 'events':[['abhi','ashu'],'abhi']} 
  
# Create DataFrame 
df = pd.DataFrame(data) 
  
# Print the output. 
df

在此处输入图像描述

My expected outcome is:-

在此处输入图像描述

You can use pandas.explode() function:

>>> df.explode('events').reset_index(drop=True)

   cust events
0  fnwp   abhi
1  fnwp   ashu
2   utp   abhi

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM