We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f56b19 commit 37f3aabCopy full SHA for 37f3aab
pandas/core/arrays/period.py
@@ -68,6 +68,8 @@ class PeriodArray(PeriodMixin, dtl.DatelikeOps):
68
Pandas ExtensionArray for storing Period data.
69
70
Users should use :func:`period_range` to create new instances.
71
+ Alternatively, :func:`array` can be used to create new instances
72
+ from a sequence of Period scalars.
73
74
Parameters
75
----------
@@ -97,8 +99,10 @@ class PeriodArray(PeriodMixin, dtl.DatelikeOps):
97
99
98
100
See Also
101
--------
- period_range: Create a fixed-frequency PeriodArray.
102
+ Period: Represents a period of time.
103
PeriodIndex : Immutable Index for period data.
104
+ period_range: Create a fixed-frequency PeriodArray.
105
+ array: Construct a pandas array.
106
107
Notes
108
-----
0 commit comments