本文简要介绍
pyspark.pandas.Series.pow
的用法。用法:
Series.pow(other: Any) → pyspark.pandas.series.Series
返回系列系列和其他元素的 index 幂(二元运算符
**
)。相当于
series ** other
- other:系列或标量值
- Series
操作的结果。
参数:
返回:
例子:
>>> df = ps.DataFrame({'a': [2, 2, 4, np.nan], ... 'b': [2, np.nan, 2, np.nan]}, ... index=['a', 'b', 'c', 'd'], columns=['a', 'b']) >>> df a b a 2.0 2.0 b 2.0 NaN c 4.0 2.0 d NaN NaN
>>> df.a.pow(df.b) a 4.0 b NaN c 16.0 d NaN dtype: float64
>>> df.a.rpow(df.b) a 4.0 b NaN c 16.0 d NaN dtype: float64
相关用法
- Python pyspark Series.pop用法及代码示例
- Python pyspark Series.plot.barh用法及代码示例
- Python pyspark Series.plot.pie用法及代码示例
- Python pyspark Series.pandas_on_spark.transform_batch用法及代码示例
- Python pyspark Series.plot.box用法及代码示例
- Python pyspark Series.pipe用法及代码示例
- Python pyspark Series.plot.line用法及代码示例
- Python pyspark Series.pad用法及代码示例
- Python pyspark Series.plot.density用法及代码示例
- Python pyspark Series.plot.hist用法及代码示例
- Python pyspark Series.plot.area用法及代码示例
- Python pyspark Series.pct_change用法及代码示例
- Python pyspark Series.product用法及代码示例
- Python pyspark Series.prod用法及代码示例
- Python pyspark Series.plot.kde用法及代码示例
- Python pyspark Series.plot.bar用法及代码示例
- Python pyspark Series.asof用法及代码示例
- Python pyspark Series.to_frame用法及代码示例
- Python pyspark Series.rsub用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.pow。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。