本文简要介绍
pyspark.pandas.Series.reindex_like
的用法。用法:
Series.reindex_like(other: Union[Series, DataFrame]) → pyspark.pandas.series.Series
返回具有匹配索引的系列作为其他对象。
使对象符合所有轴上的相同索引。将 NA/NaN 放置在前一个索引中没有值的位置。
- other:系列或DataFrame
它的行和列索引用于定义该对象的新索引。
- Series
在每个轴上具有更改索引的系列。
参数:
返回:
注意:
与调用
.reindex(index=other.index, ...)
相同。例子:
>>> s1 = ps.Series([24.3, 31.0, 22.0, 35.0], ... index=pd.date_range(start='2014-02-12', ... end='2014-02-15', freq='D'), ... name="temp_celsius") >>> s1 2014-02-12 24.3 2014-02-13 31.0 2014-02-14 22.0 2014-02-15 35.0 Name: temp_celsius, dtype: float64
>>> s2 = ps.Series(["low", "low", "medium"], ... index=pd.DatetimeIndex(['2014-02-12', '2014-02-13', ... '2014-02-15']), ... name="winspeed") >>> s2 2014-02-12 low 2014-02-13 low 2014-02-15 medium Name: winspeed, dtype: object
>>> s2.reindex_like(s1).sort_index() 2014-02-12 low 2014-02-13 low 2014-02-14 None 2014-02-15 medium Name: winspeed, dtype: object
相关用法
- Python pyspark Series.reindex用法及代码示例
- Python pyspark Series.repeat用法及代码示例
- Python pyspark Series.rename_axis用法及代码示例
- Python pyspark Series.reset_index用法及代码示例
- Python pyspark Series.replace用法及代码示例
- Python pyspark Series.rename用法及代码示例
- Python pyspark Series.rsub用法及代码示例
- Python pyspark Series.rank用法及代码示例
- Python pyspark Series.rtruediv用法及代码示例
- Python pyspark Series.round用法及代码示例
- Python pyspark Series.rdiv用法及代码示例
- Python pyspark Series.rmod用法及代码示例
- Python pyspark Series.radd用法及代码示例
- Python pyspark Series.rpow用法及代码示例
- Python pyspark Series.rmul用法及代码示例
- Python pyspark Series.rfloordiv用法及代码示例
- Python pyspark Series.asof用法及代码示例
- Python pyspark Series.to_frame用法及代码示例
- Python pyspark Series.mod用法及代码示例
- Python pyspark Series.str.join用法及代码示例
- Python pyspark Series.str.startswith用法及代码示例
- Python pyspark Series.dt.is_quarter_end用法及代码示例
- Python pyspark Series.dropna用法及代码示例
- Python pyspark Series.sub用法及代码示例
- Python pyspark Series.sum用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.reindex_like。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。