用法:
Series.set_flags(*, copy=False, allows_duplicate_labels=None)
返回带有更新标志的新对象。
- allows_duplicate_labels:布尔型,可选
返回的对象是否允许重复标签。
- Series或DataFrame
与调用者相同的类型。
参数:
返回:
注意:
此方法返回一个新对象,该对象是与输入数据相同的视图。改变输入或输出值将反映在另一个中。
此方法旨在用于方法链中。
“Flags” 与 “metadata” 不同。标志反映了 pandas 对象(Series 或 DataFrame)的属性。元数据是 index 据集的属性,应存储在
DataFrame.attrs
中。例子:
>>> df = pd.DataFrame({"A":[1, 2]}) >>> df.flags.allows_duplicate_labels True >>> df2 = df.set_flags(allows_duplicate_labels=False) >>> df2.flags.allows_duplicate_labels False
相关用法
- Python pandas.Series.set_axis用法及代码示例
- Python pandas.Series.searchsorted用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.str.replace用法及代码示例
- Python pandas.Series.str.endswith用法及代码示例
- Python pandas.Series.str.isspace用法及代码示例
- Python pandas.Series.str.isdigit用法及代码示例
- Python pandas.Series.str.wrap用法及代码示例
- Python pandas.Series.sparse.to_coo用法及代码示例
- Python pandas.Series.str.isalnum用法及代码示例
- Python pandas.Series.str.zfill用法及代码示例
- Python pandas.Series.sub用法及代码示例
- Python pandas.Series.str.partition用法及代码示例
- Python pandas.Series.str.isnumeric用法及代码示例
- Python pandas.Series.str.startswith用法及代码示例
- Python pandas.Series.sparse.npoints用法及代码示例
- Python pandas.Series.str.count用法及代码示例
- Python pandas.Series.str.rpartition用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.set_flags。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。