本文简要介绍
pyspark.pandas.Series.div
的用法。用法:
Series.div(other: Any) → pyspark.pandas.series.Series
返回系列和其他元素的浮点除法(二元运算符
/
)。相当于
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.divide(df.b) a 1.0 b NaN c 2.0 d NaN dtype: float64
>>> df.a.rdiv(df.b) a 1.0 b NaN c 0.5 d NaN dtype: float64
相关用法
- Python pyspark Series.diff用法及代码示例
- Python pyspark Series.dt.is_quarter_end用法及代码示例
- Python pyspark Series.dropna用法及代码示例
- Python pyspark Series.dt.is_month_end用法及代码示例
- Python pyspark Series.describe用法及代码示例
- Python pyspark Series.dt.floor用法及代码示例
- Python pyspark Series.dt.is_quarter_start用法及代码示例
- Python pyspark Series.dt.day_name用法及代码示例
- Python pyspark Series.dt.dayofweek用法及代码示例
- Python pyspark Series.dtype用法及代码示例
- Python pyspark Series.dt.ceil用法及代码示例
- Python pyspark Series.drop用法及代码示例
- Python pyspark Series.dt.strftime用法及代码示例
- Python pyspark Series.dot用法及代码示例
- Python pyspark Series.dtypes用法及代码示例
- Python pyspark Series.drop_duplicates用法及代码示例
- Python pyspark Series.dt.is_leap_year用法及代码示例
- Python pyspark Series.dt.is_year_start用法及代码示例
- Python pyspark Series.dt.month_name用法及代码示例
- Python pyspark Series.dt.round用法及代码示例
- Python pyspark Series.droplevel用法及代码示例
- Python pyspark Series.dt.is_year_end用法及代码示例
- Python pyspark Series.dt.weekday用法及代码示例
- Python pyspark Series.dt.normalize用法及代码示例
- Python pyspark Series.dt.is_month_start用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.div。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。