本文简要介绍
pyspark.pandas.Series.xs
的用法。用法:
Series.xs(key: Union[Any, Tuple[Any, …]], level: Optional[int] = None) → pyspark.pandas.series.Series
从系列返回横截面。
此方法采用
key
参数来选择 MultiIndex 特定级别的数据。- key:标签或标签元组
标签包含在索引中,或部分包含在 MultiIndex 中。
- level:对象,默认为前 n 级(n=1 或 len(key))
如果键部分包含在 MultiIndex 中,请指明使用了哪些级别。级别可以通过标签或位置来引用。
- Series
与所选索引级别对应的原始系列的横截面。
参数:
返回:
例子:
>>> midx = pd.MultiIndex([['a', 'b', 'c'], ... ['lama', 'cow', 'falcon'], ... ['speed', 'weight', 'length']], ... [[0, 0, 0, 1, 1, 1, 2, 2, 2], ... [0, 0, 0, 1, 1, 1, 2, 2, 2], ... [0, 1, 2, 0, 1, 2, 0, 1, 2]]) >>> s = ps.Series([45, 200, 1.2, 30, 250, 1.5, 320, 1, 0.3], ... index=midx) >>> s a lama speed 45.0 weight 200.0 length 1.2 b cow speed 30.0 weight 250.0 length 1.5 c falcon speed 320.0 weight 1.0 length 0.3 dtype: float64
获取指定索引处的值
>>> s.xs('a') lama speed 45.0 weight 200.0 length 1.2 dtype: float64
获取多个索引处的值
>>> s.xs(('a', 'lama')) speed 45.0 weight 200.0 length 1.2 dtype: float64
获取指定索引和级别的值
>>> s.xs('lama', level=1) a speed 45.0 weight 200.0 length 1.2 dtype: float64
相关用法
- 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.gt用法及代码示例
- 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用法及代码示例
- Python pyspark Series.truediv用法及代码示例
- Python pyspark Series.sem用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.xs。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。