用法:
property Series.flags
获取与此 pandas 对象关联的属性。
可用的标志是
注意:
“Flags” 与 “metadata” 不同。标志反映了 pandas 对象(Series 或 DataFrame)的属性。元数据是 index 据集的属性,应存储在
DataFrame.attrs
中。例子:
>>> df = pd.DataFrame({"A":[1, 2]}) >>> df.flags <Flags(allows_duplicate_labels=True)>
可以使用
.
获取或设置标志>>> df.flags.allows_duplicate_labels True >>> df.flags.allows_duplicate_labels = False
或者用钥匙切片
>>> df.flags["allows_duplicate_labels"] False >>> df.flags["allows_duplicate_labels"] = True
相关用法
- Python pandas.Series.floordiv用法及代码示例
- Python pandas.Series.filter用法及代码示例
- Python pandas.Series.first用法及代码示例
- Python pandas.Series.factorize用法及代码示例
- Python pandas.Series.fillna用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.head用法及代码示例
- Python pandas.Series.eq用法及代码示例
- Python pandas.Series.plot.line用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.between_time用法及代码示例
- Python pandas.Series.reindex_like用法及代码示例
- Python pandas.Series.dt.is_year_end用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.flags。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。