Skip to content

Commit fb0d8bc

Browse files
committed
wip
1 parent a635649 commit fb0d8bc

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

doc/source/api.rst

+28-1
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,20 @@ following usable methods and properties:
803803
Series.cat.as_ordered
804804
Series.cat.as_unordered
805805

806-
.. _api.interval:
806+
.. _api.arrays.integerna:
807+
808+
Integer-NA
809+
~~~~~~~~~~
810+
811+
:class:`arrays.IntegerArray` can hold integer data, potentially with missing
812+
values.
813+
814+
.. autosummary::
815+
:toctree: generated/
816+
817+
IntegerArray
818+
819+
.. _api.arrays.interval:
807820

808821
Interval
809822
~~~~~~~~
@@ -839,6 +852,20 @@ left, right, or both, or neither sides.
839852
IntervalArray.overlaps
840853
IntervalArray.to_tuples
841854

855+
.. _api.arrays.period:
856+
857+
.. autosummary::
858+
:toctree: generated/
859+
860+
PeriodArray
861+
862+
.. _api.arrays.sparse:
863+
864+
.. autosummary::
865+
:toctree: generated/
866+
867+
SparseArray
868+
842869
Plotting
843870
~~~~~~~~
844871

pandas/arrays/__init__.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
"""
2+
All of pandas' ExtensionArrays and ExtensionDtypes.
3+
4+
See :ref:`extending.extension-types` for more.
5+
"""
6+
from pandas.core.arrays import (
7+
IntervalArray, PeriodArray, Categorical, SparseArray, IntegerArray,
8+
)
9+
10+
11+
__all__ = [
12+
'Categorical',
13+
'IntegerArray',
14+
'IntervalArray',
15+
'PeriodArray',
16+
'SparseArray',
17+
]

0 commit comments

Comments
 (0)