本文简要介绍
pyspark.pandas.Series.get
的用法。用法:
Series.get(key: Any, default: Optional[Any] = None) → Any
从给定键的对象中获取项目(DataFrame 列、Panel 切片等)。如果未找到,则返回默认值。
- key:对象
- value:与对象中包含的项目相同的类型
参数:
返回:
例子:
>>> df = ps.DataFrame({'x':range(3), 'y':['a','b','b'], 'z':['a','b','b']}, ... columns=['x', 'y', 'z'], index=[10, 20, 20]) >>> df x y z 10 0 a a 20 1 b b 20 2 b b
>>> df.get('x') 10 0 20 1 20 2 Name: x, dtype: int64
>>> df.get(['x', 'y']) x y 10 0 a 20 1 b 20 2 b
>>> df.x.get(10) 0
>>> df.x.get(20) 20 1 20 2 Name: x, dtype: int64
>>> df.x.get(15, -1) -1
相关用法
- Python pyspark Series.ge用法及代码示例
- Python pyspark Series.gt用法及代码示例
- Python pyspark Series.groupby用法及代码示例
- 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用法及代码示例
- Python pyspark Series.sum用法及代码示例
- Python pyspark Series.iloc用法及代码示例
- Python pyspark Series.explode用法及代码示例
- Python pyspark Series.str.slice_replace用法及代码示例
- Python pyspark Series.dt.is_month_end用法及代码示例
- Python pyspark Series.plot.barh用法及代码示例
- Python pyspark Series.between用法及代码示例
- Python pyspark Series.floordiv用法及代码示例
- Python pyspark Series.describe用法及代码示例
- Python pyspark Series.ndim用法及代码示例
- Python pyspark Series.str.rjust用法及代码示例
- Python pyspark Series.loc用法及代码示例
- Python pyspark Series.add_prefix用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.get。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。