本文简要介绍
pyspark.pandas.Series.iat
的用法。用法:
property Series.iat
按整数位置访问行/列对的单个值。
与
iloc
类似,两者都提供基于整数的查找。如果您只需要获取或设置 DataFrame 或系列中的单个值,请使用iat
。- KeyError
当DataFrame中不存在标签时
抛出:
例子:
>>> df = ps.DataFrame([[0, 2, 3], [0, 4, 1], [10, 20, 30]], ... columns=['A', 'B', 'C']) >>> df A B C 0 0 2 3 1 0 4 1 2 10 20 30
获取指定行/列对的值
>>> df.iat[1, 2] 1
在系列中获取值
>>> psser = ps.Series([1, 2, 3], index=[10, 20, 30]) >>> psser 10 1 20 2 30 3 dtype: int64
>>> psser.iat[1] 2
相关用法
- Python pyspark Series.iloc用法及代码示例
- Python pyspark Series.isna用法及代码示例
- Python pyspark Series.item用法及代码示例
- Python pyspark Series.isnull用法及代码示例
- Python pyspark Series.isin用法及代码示例
- Python pyspark Series.idxmin用法及代码示例
- Python pyspark Series.is_monotonic用法及代码示例
- Python pyspark Series.idxmax用法及代码示例
- Python pyspark Series.is_monotonic_decreasing用法及代码示例
- Python pyspark Series.is_unique用法及代码示例
- Python pyspark Series.is_monotonic_increasing用法及代码示例
- Python pyspark Series.iteritems用法及代码示例
- 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.explode用法及代码示例
- Python pyspark Series.str.slice_replace用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.iat。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。