使用熊猫将单元格拆分为新行

时间:2018-07-06 17:57:27

标签: pandas split add

我需要将单元格中的内容拆分为数据集中的新行。

原始数据的标题(其余列省略)

popularity     budget      revenue   genres \
32.985763   150000000   1513528810   Action|Adventure|Science Fiction|Thriller \
28.419936   150000000   378436354    Action|Adventure|Science Fiction|Thriller \    
13.112507   110000000   295238201    Adventure|Science Fiction|Thriller \
11.173104   200000000   2068178225   Action|Adventure|Science Fiction|Fantasy \
9.335014    190000000   1506249360   Action|Crime|Thriller

结果应该是

popularity     budget      revenue   genres \
32.985763   150000000   1513528810   Action \
32.985763   150000000   1513528810   Adventure \
32.985763   150000000   1513528810   Science Fiction \
32.985763   150000000   1513528810   Thriller \
.
.
.
and so on

顺便说一句,如何向数据集添加新列。像列名称是利润(收入减去预算)。谢谢。

0 个答案:

没有答案