簡體   English   中英

如何拆分 pandas 一些不是列表的數據框行?

[英]How to split pandas some of data frame rows that are not lists?

有沒有辦法改變這個數據框:

40  4.5         95
41  1.76        95
112 0.17/0.43   >95/>95

為此使用 pandas:

40  4.5         95
41  1.76        95
112 0.17        95
112 0.43        95

這是 pandas dataframe:

    a   b
19  560 80
40  4.5 95
41  1.76    95
112 0.17/0.43   >95/>95
154 7.2/1   >95/>95
... ... ...
2991    55  95
2992    33  95
3887    6.1 87.7
3893    3.9 70.3
3908    100 40
216 rows × 2 columns

我會使用explode

df = df.apply(lambda x: x.astype(str).str.split('/').explode(ignore_index=True))

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM