でより多くの行を作るための一つの列から分割データだから私の入力は次のとおりです。Pythonのデータ操作:同じデータフレーム
Col1 Col2 Col3 Col4
0 123 abc,def,ghi Country1 XXX
1 456 pqr,stu Country2 XX
2 789 xyz Country2 YY
私は私の出力をしたいなど:
ほとんどだろう何Col1 Col2 Col3 Col4
0 abc 123 Country1 XXX
1 def 123 Country1 XXX
2 ghi 123 Country1 XXX
3 pqr 456 Country2 XX
4 stu 456 Country2 XX
5 xyz 789 Country2 YY
これを行うpythonic方法pls?ありがとうVM!
あなたが元DataFrame
に
join
ため
Series
を作成するための
stack
で
str.split
を使用することができます
AHA - '拡大= true'を分割で+スタック!本当にありがとう! – spiff