File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -521,7 +521,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
521
521
pandas.DatetimeIndex.year\
522
522
pandas.DatetimeTZDtype.tz\
523
523
pandas.DatetimeTZDtype.unit\
524
- pandas.Flags\
525
524
pandas.HDFStore.get\
526
525
pandas.HDFStore.info\
527
526
pandas.HDFStore.keys\
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ class Flags:
11
11
"""
12
12
Flags that apply to pandas objects.
13
13
14
+ “Flags” differ from “metadata”. Flags reflect properties of the pandas
15
+ object (the Series or DataFrame). Metadata refer to properties of the
16
+ dataset, and should be stored in DataFrame.attrs.
17
+
14
18
Parameters
15
19
----------
16
20
obj : Series or DataFrame
@@ -30,6 +34,11 @@ class Flags:
30
34
it is expected that every method taking or returning one or more
31
35
DataFrame or Series objects will propagate ``allows_duplicate_labels``.
32
36
37
+ See Also
38
+ --------
39
+ DataFrame.attrs : Dictionary of global attributes of this dataset.
40
+ Series.attrs : Dictionary of global attributes of this dataset.
41
+
33
42
Examples
34
43
--------
35
44
Attributes can be set in two ways:
You can’t perform that action at this time.
0 commit comments