目录

搜索

输入搜索字词或模块,类或函数名称。

pandas.Series.reindex_like

Series.reindex_like(other, method=None, copy=True, limit=None, tolerance=None)[source]

将具有匹配索引的对象返回给我自己。

参数:

其他:对象

方法:string或None

copy:boolean,default True

limit:int,默认值无

要针对不完全匹配填充的连续标签的最大数量。

公差:可选

其他对象的标签与此对象之间的不完全匹配的最大距离。

版本0.17.0中的新功能。

返回:

重新编制索引:与输入相同

笔记

就像调用s.reindex(index = other.index,columns = other.columns,
method = ...)
Scroll To Top