gpt4 book ai didi

python - 如何合并 Pandas 中的两个数据框?

转载 作者:太空宇宙 更新时间:2023-11-04 02:47:33 25 4
gpt4 key购买 nike

我有两个 Pandas 数据框

Unnamed: 0  sentiment   numberagreed    tweetid tweet
0 0 2 6 219584 Apple processa a Samsung no Japão - Notícias -...
1 1 1 3 399249 É O JACKI CHAN !!! RT @user ESSE É DOS MEUS!!!...
2 2 3 3 387155 Eras o samsung galaxy tab e muito lerdo para t...
3 3 3 3 205458 Dizem que a coisa mais triste que o homem enfr...
4 4 3 3 2054404 RAIVA vou ter que ir com meu nike dinovo pra e...

tweetid sent
219584 0.494428
399249 0.789241
387155 0.351972
205458 0.396907
2054404 0.000000

它们的长度不一样并且在第二个数据框中有一些缺失值

我想根据 tweetid 合并两个数据框并删除缺失值

最佳答案

使用pd.merge

pd.merge(left=df1, right=df2, on='tweetid', how='inner')

因为你取了inner,所以不重叠的部分将被丢弃。 on='tweetid' 将其合并到 tweetid 上。

关于python - 如何合并 Pandas 中的两个数据框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44701727/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com