鱼C论坛

 找回密码
 立即注册
查看: 2363|回复: 0

[技术交流] pandas数据的拼接——concat的inner拼接

[复制链接]
发表于 2020-12-23 15:31:05 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
# 在pandas里提供concat函数可以将形参给出的列表里的各个pandas的数据拼接成一个大的数据。
# Pandas在做数据拼接的时候提供类似于数据库的内连接、外连接的操作。
# 默认是outer join即外连接,可以使用参数指定连接的类型为内连接inner join。
# inner join类型的拼接实际是求两个集的交集。
import numpy as np
import pandas as pd
col1 = "hello the cruel world".split()
col2 = "hello the nice world".split()
idx1 = ["a", "b", "c", "d"]
idx2 = ["a", "b", "d", "e"]
val1 = np.arange(16).reshape(4,4)
val2 = np.arange(20,36).reshape(4,4)
df1 = pd.DataFrame(val1,index=idx1,columns=col1)
df2 = pd.DataFrame(val2,index=idx2,columns=col2)
df12 = pd.concat([df1, df2],join='outer')
df12_in = pd.concat([df1, df2],join='inner')
print ('默认concat拼接******\n',df12)
print ('inner——concat拼接**\n',df12_in)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-17 01:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表