本文简要介绍
pyspark.pandas.Series.copy
的用法。用法:
Series.copy(deep: bool = True) → pyspark.pandas.series.Series
制作此对象的索引和数据的副本。
- deep:布尔值,默认为真
不支持此参数,而只是匹配 pandas 的虚拟参数。
- copy:Series
参数:
返回:
例子:
>>> s = ps.Series([1, 2], index=["a", "b"]) >>> s a 1 b 2 dtype: int64 >>> s_copy = s.copy() >>> s_copy a 1 b 2 dtype: int64
相关用法
- Python pyspark Series.count用法及代码示例
- Python pyspark Series.combine_first用法及代码示例
- Python pyspark Series.corr用法及代码示例
- Python pyspark Series.compare用法及代码示例
- Python pyspark Series.cumsum用法及代码示例
- Python pyspark Series.cat.ordered用法及代码示例
- Python pyspark Series.cat.as_unordered用法及代码示例
- Python pyspark Series.cummax用法及代码示例
- Python pyspark Series.cat.set_categories用法及代码示例
- Python pyspark Series.cummin用法及代码示例
- Python pyspark Series.cat.rename_categories用法及代码示例
- Python pyspark Series.cat.as_ordered用法及代码示例
- Python pyspark Series.cumprod用法及代码示例
- Python pyspark Series.clip用法及代码示例
- Python pyspark Series.cat.reorder_categories用法及代码示例
- Python pyspark Series.cat.remove_categories用法及代码示例
- Python pyspark Series.cat.add_categories用法及代码示例
- Python pyspark Series.cat.categories用法及代码示例
- Python pyspark Series.cat.codes用法及代码示例
- Python pyspark Series.cat.remove_unused_categories用法及代码示例
- Python pyspark Series.asof用法及代码示例
- Python pyspark Series.to_frame用法及代码示例
- Python pyspark Series.rsub用法及代码示例
- Python pyspark Series.mod用法及代码示例
- Python pyspark Series.str.join用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.copy。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。