Skip to content

Latest commit

 

History

History
4115 lines (3310 loc) · 70.4 KB

api.rst

File metadata and controls

4115 lines (3310 loc) · 70.4 KB
.. currentmodule:: pandas

{{ header }}

API Reference

This page gives an overview of all public pandas objects, functions and methods. All classes and functions exposed in pandas.* namespace are public.

Some subpackages are public which include pandas.errors, pandas.plotting, and pandas.testing. Public functions in pandas.io and pandas.tseries submodules are mentioned in the documentation. pandas.api.types subpackage holds some public functions related to data types in pandas.

Warning

The pandas.core, pandas.compat, and pandas.util top-level modules are PRIVATE. Stable functionality in such modules is not guaranteed.

Input/Output

Pickling

.. autosummary::
   :toctree: generated/

   read_pickle

Flat File

.. autosummary::
   :toctree: generated/

   read_table
   read_csv
   read_fwf
   read_msgpack

Clipboard

.. autosummary::
   :toctree: generated/

   read_clipboard

Excel

.. autosummary::
   :toctree: generated/

   read_excel
   ExcelFile.parse

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   ExcelWriter

JSON

.. autosummary::
   :toctree: generated/

   read_json

.. currentmodule:: pandas.io.json

.. autosummary::
   :toctree: generated/

   json_normalize
   build_table_schema

.. currentmodule:: pandas

HTML

.. autosummary::
   :toctree: generated/

   read_html

HDFStore: PyTables (HDF5)

.. autosummary::
   :toctree: generated/

   read_hdf
   HDFStore.put
   HDFStore.append
   HDFStore.get
   HDFStore.select
   HDFStore.info
   HDFStore.keys
   HDFStore.groups
   HDFStore.walk

Feather

.. autosummary::
   :toctree: generated/

   read_feather

Parquet

.. autosummary::
   :toctree: generated/

   read_parquet

SAS

.. autosummary::
   :toctree: generated/

   read_sas

SQL

.. autosummary::
   :toctree: generated/

   read_sql_table
   read_sql_query
   read_sql

Google BigQuery

.. autosummary::
   :toctree: generated/

   read_gbq


STATA

.. autosummary::
   :toctree: generated/

   read_stata

.. currentmodule:: pandas.io.stata

.. autosummary::
   :toctree: generated/

   StataReader.data
   StataReader.data_label
   StataReader.value_labels
   StataReader.variable_labels
   StataWriter.write_file

.. currentmodule:: pandas

General functions

Data manipulations

.. autosummary::
   :toctree: generated/

   melt
   pivot
   pivot_table
   crosstab
   cut
   qcut
   merge
   merge_ordered
   merge_asof
   concat
   get_dummies
   factorize
   unique
   wide_to_long

Top-level missing data

.. autosummary::
   :toctree: generated/

   isna
   isnull
   notna
   notnull

Top-level conversions

.. autosummary::
   :toctree: generated/

   to_numeric

Top-level dealing with datetimelike

.. autosummary::
   :toctree: generated/

   to_datetime
   to_timedelta
   date_range
   bdate_range
   period_range
   timedelta_range
   infer_freq

Top-level dealing with intervals

.. autosummary::
   :toctree: generated/

   interval_range

Top-level evaluation

.. autosummary::
   :toctree: generated/

   eval

Hashing

.. autosummary::
   :toctree: generated/

   util.hash_array
   util.hash_pandas_object

Testing

.. autosummary::
   :toctree: generated/

   test

Series

Constructor

.. currentmodule:: pandas

.. autosummary::
   :toctree: generated/

   Series

Attributes

Axes

.. autosummary::
   :toctree: generated/

   Series.index

.. autosummary::
   :toctree: generated/

   Series.values
   Series.dtype
   Series.ftype
   Series.shape
   Series.nbytes
   Series.ndim
   Series.size
   Series.strides
   Series.itemsize
   Series.base
   Series.T
   Series.memory_usage
   Series.hasnans
   Series.flags
   Series.empty
   Series.dtypes
   Series.ftypes
   Series.data
   Series.is_copy
   Series.name
   Series.put

Conversion

.. autosummary::
   :toctree: generated/

   Series.astype
   Series.infer_objects
   Series.convert_objects
   Series.copy
   Series.bool
   Series.to_period
   Series.to_timestamp
   Series.to_list
   Series.get_values


Indexing, iteration

.. autosummary::
   :toctree: generated/

   Series.get
   Series.at
   Series.iat
   Series.loc
   Series.iloc
   Series.__iter__
   Series.iteritems
   Series.items
   Series.keys
   Series.pop
   Series.item
   Series.xs

For more information on .at, .iat, .loc, and .iloc, see the :ref:`indexing documentation <indexing>`.

Binary operator functions

.. autosummary::
   :toctree: generated/

   Series.add
   Series.sub
   Series.mul
   Series.div
   Series.truediv
   Series.floordiv
   Series.mod
   Series.pow
   Series.radd
   Series.rsub
   Series.rmul
   Series.rdiv
   Series.rtruediv
   Series.rfloordiv
   Series.rmod
   Series.rpow
   Series.combine
   Series.combine_first
   Series.round
   Series.lt
   Series.gt
   Series.le
   Series.ge
   Series.ne
   Series.eq
   Series.product
   Series.dot

Function application, GroupBy & Window

.. autosummary::
   :toctree: generated/

   Series.apply
   Series.agg
   Series.aggregate
   Series.transform
   Series.map
   Series.groupby
   Series.rolling
   Series.expanding
   Series.ewm
   Series.pipe

Computations / Descriptive Stats

.. autosummary::
   :toctree: generated/

   Series.abs
   Series.all
   Series.any
   Series.autocorr
   Series.between
   Series.clip
   Series.clip_lower
   Series.clip_upper
   Series.corr
   Series.count
   Series.cov
   Series.cummax
   Series.cummin
   Series.cumprod
   Series.cumsum
   Series.describe
   Series.diff
   Series.factorize
   Series.kurt
   Series.mad
   Series.max
   Series.mean
   Series.median
   Series.min
   Series.mode
   Series.nlargest
   Series.nsmallest
   Series.pct_change
   Series.prod
   Series.quantile
   Series.rank
   Series.sem
   Series.skew
   Series.std
   Series.sum
   Series.var
   Series.kurtosis
   Series.unique
   Series.nunique
   Series.is_unique
   Series.is_monotonic
   Series.is_monotonic_increasing
   Series.is_monotonic_decreasing
   Series.value_counts
   Series.compound


Reindexing / Selection / Label manipulation

.. autosummary::
   :toctree: generated/

   Series.align
   Series.drop
   Series.droplevel
   Series.drop_duplicates
   Series.duplicated
   Series.equals
   Series.first
   Series.head
   Series.idxmax
   Series.idxmin
   Series.isin
   Series.last
   Series.reindex
   Series.reindex_like
   Series.rename
   Series.rename_axis
   Series.reset_index
   Series.sample
   Series.select
   Series.set_axis
   Series.take
   Series.tail
   Series.truncate
   Series.where
   Series.mask
   Series.add_prefix
   Series.add_suffix
   Series.filter

Missing data handling

.. autosummary::
   :toctree: generated/

   Series.isna
   Series.notna
   Series.dropna
   Series.fillna
   Series.interpolate

Reshaping, sorting

.. autosummary::
   :toctree: generated/

   Series.argsort
   Series.argmin
   Series.argmax
   Series.reorder_levels
   Series.sort_values
   Series.sort_index
   Series.swaplevel
   Series.unstack
   Series.searchsorted
   Series.ravel
   Series.repeat
   Series.squeeze
   Series.view


Combining / joining / merging

.. autosummary::
   :toctree: generated/

   Series.append
   Series.replace
   Series.update

Time series-related

.. autosummary::
   :toctree: generated/

   Series.asfreq
   Series.asof
   Series.shift
   Series.first_valid_index
   Series.last_valid_index
   Series.resample
   Series.tz_convert
   Series.tz_localize
   Series.at_time
   Series.between_time
   Series.tshift
   Series.slice_shift

Datetimelike Properties

Series.dt can be used to access the values of the series as datetimelike and return several properties. These can be accessed like Series.dt.<property>.

Datetime Properties

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_attribute.rst

   Series.dt.date
   Series.dt.time
   Series.dt.timetz
   Series.dt.year
   Series.dt.month
   Series.dt.day
   Series.dt.hour
   Series.dt.minute
   Series.dt.second
   Series.dt.microsecond
   Series.dt.nanosecond
   Series.dt.week
   Series.dt.weekofyear
   Series.dt.dayofweek
   Series.dt.weekday
   Series.dt.dayofyear
   Series.dt.quarter
   Series.dt.is_month_start
   Series.dt.is_month_end
   Series.dt.is_quarter_start
   Series.dt.is_quarter_end
   Series.dt.is_year_start
   Series.dt.is_year_end
   Series.dt.is_leap_year
   Series.dt.daysinmonth
   Series.dt.days_in_month
   Series.dt.tz
   Series.dt.freq

Datetime Methods

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_method.rst

   Series.dt.to_period
   Series.dt.to_pydatetime
   Series.dt.tz_localize
   Series.dt.tz_convert
   Series.dt.normalize
   Series.dt.strftime
   Series.dt.round
   Series.dt.floor
   Series.dt.ceil
   Series.dt.month_name
   Series.dt.day_name

Period Properties

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_attribute.rst

   Series.dt.qyear
   Series.dt.start_time
   Series.dt.end_time

Timedelta Properties

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_attribute.rst

   Series.dt.days
   Series.dt.seconds
   Series.dt.microseconds
   Series.dt.nanoseconds
   Series.dt.components

Timedelta Methods

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_method.rst

   Series.dt.to_pytimedelta
   Series.dt.total_seconds

String handling

Series.str can be used to access the values of the series as strings and apply several methods to it. These can be accessed like Series.str.<function/property>.

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_method.rst

   Series.str.capitalize
   Series.str.cat
   Series.str.center
   Series.str.contains
   Series.str.count
   Series.str.decode
   Series.str.encode
   Series.str.endswith
   Series.str.extract
   Series.str.extractall
   Series.str.find
   Series.str.findall
   Series.str.get
   Series.str.index
   Series.str.join
   Series.str.len
   Series.str.ljust
   Series.str.lower
   Series.str.lstrip
   Series.str.match
   Series.str.normalize
   Series.str.pad
   Series.str.partition
   Series.str.repeat
   Series.str.replace
   Series.str.rfind
   Series.str.rindex
   Series.str.rjust
   Series.str.rpartition
   Series.str.rstrip
   Series.str.slice
   Series.str.slice_replace
   Series.str.split
   Series.str.rsplit
   Series.str.startswith
   Series.str.strip
   Series.str.swapcase
   Series.str.title
   Series.str.translate
   Series.str.upper
   Series.str.wrap
   Series.str.zfill
   Series.str.isalnum
   Series.str.isalpha
   Series.str.isdigit
   Series.str.isspace
   Series.str.islower
   Series.str.isupper
   Series.str.istitle
   Series.str.isnumeric
   Series.str.isdecimal
   Series.str.get_dummies

Arrays

Pandas and third-party libraries can extend NumPy's type system (see :ref:`extending.extension-types`).

.. autosummary::
   :toctree: generated/

   array

Categorical

Pandas defines a custom data type for representing data that can take only a limited, fixed set of values. The dtype of a Categorical can be described by a :class:`pandas.api.types.CategoricalDtype`.

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   api.types.CategoricalDtype

.. autosummary::
   :toctree: generated/

   api.types.CategoricalDtype.categories
   api.types.CategoricalDtype.ordered

Categorical data can be stored in a :class:`pandas.Categorical`

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   Categorical


The alternative :meth:`Categorical.from_codes` constructor can be used when you have the categories and integer codes already:

.. autosummary::
   :toctree: generated/

   Categorical.from_codes

The dtype information is available on the Categorical

.. autosummary::
   :toctree: generated/

   Categorical.dtype
   Categorical.categories
   Categorical.ordered
   Categorical.codes

np.asarray(categorical) works by implementing the array interface. Be aware, that this converts the Categorical back to a NumPy array, so categories and order information is not preserved!

.. autosummary::
   :toctree: generated/

   Categorical.__array__

A Categorical can be stored in a Series or DataFrame. To create a Series of dtype category, use cat = s.astype(dtype) or Series(..., dtype=dtype) where dtype is either

If the Series is of dtype CategoricalDtype, Series.cat can be used to change the categorical data. This accessor is similar to the Series.dt or Series.str and has the following usable methods and properties:

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_attribute.rst

   Series.cat.categories
   Series.cat.ordered
   Series.cat.codes

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_method.rst

   Series.cat.rename_categories
   Series.cat.reorder_categories
   Series.cat.add_categories
   Series.cat.remove_categories
   Series.cat.remove_unused_categories
   Series.cat.set_categories
   Series.cat.as_ordered
   Series.cat.as_unordered

Integer-NA

:class:`arrays.IntegerArray` can hold integer data, potentially with missing values.

.. autosummary::
   :toctree: generated/

   arrays.IntegerArray

Interval

:class:`IntervalArray` is an array for storing data representing intervals. The scalar type is a :class:`Interval`. These may be stored in a :class:`Series` or as a :class:`IntervalIndex`. :class:`IntervalArray` can be closed on the 'left', 'right', or 'both', or 'neither' sides. See :ref:`indexing.intervallindex` for more.

.. currentmodule:: pandas

.. autosummary::
   :toctree: generated/

   IntervalArray

Period

Periods represent a span of time (e.g. the year 2000, or the hour from 11:00 to 12:00 on January 1st, 2000). A collection of :class:`Period` objects with a common frequency can be collected in a :class:`PeriodArray`. See :ref:`timeseries.periods` for more.

.. autosummary::
   :toctree: generated/

   arrays.PeriodArray

Sparse

Sparse data may be stored and operated on more efficiently when there is a single value that's often repeated. :class:`SparseArray` is a container for this type of data. See :ref:`sparse` for more.

.. autosummary::
   :toctree: generated/

   SparseArray

Plotting

Series.plot is both a callable method and a namespace attribute for specific plotting methods of the form Series.plot.<kind>.

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_callable.rst

   Series.plot

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_method.rst

   Series.plot.area
   Series.plot.bar
   Series.plot.barh
   Series.plot.box
   Series.plot.density
   Series.plot.hist
   Series.plot.kde
   Series.plot.line
   Series.plot.pie

.. autosummary::
   :toctree: generated/

   Series.hist

Serialization / IO / Conversion

.. autosummary::
   :toctree: generated/

   Series.to_pickle
   Series.to_csv
   Series.to_dict
   Series.to_excel
   Series.to_frame
   Series.to_xarray
   Series.to_hdf
   Series.to_sql
   Series.to_msgpack
   Series.to_json
   Series.to_sparse
   Series.to_dense
   Series.to_string
   Series.to_clipboard
   Series.to_latex

Sparse

.. autosummary::
   :toctree: generated/

   SparseSeries.to_coo
   SparseSeries.from_coo

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_attribute.rst

   Series.sparse.npoints
   Series.sparse.density
   Series.sparse.fill_value
   Series.sparse.sp_values


.. autosummary::
   :toctree: generated/

   Series.sparse.from_coo
   Series.sparse.to_coo

DataFrame

Constructor

.. autosummary::
   :toctree: generated/

   DataFrame

Attributes and underlying data

Axes

.. autosummary::
   :toctree: generated/

   DataFrame.index
   DataFrame.columns

.. autosummary::
   :toctree: generated/

   DataFrame.dtypes
   DataFrame.ftypes
   DataFrame.get_dtype_counts
   DataFrame.get_ftype_counts
   DataFrame.select_dtypes
   DataFrame.values
   DataFrame.get_values
   DataFrame.axes
   DataFrame.ndim
   DataFrame.size
   DataFrame.shape
   DataFrame.memory_usage
   DataFrame.empty
   DataFrame.is_copy

Conversion

.. autosummary::
   :toctree: generated/

   DataFrame.astype
   DataFrame.convert_objects
   DataFrame.infer_objects
   DataFrame.copy
   DataFrame.isna
   DataFrame.notna
   DataFrame.bool

Indexing, iteration

.. autosummary::
   :toctree: generated/

   DataFrame.head
   DataFrame.at
   DataFrame.iat
   DataFrame.loc
   DataFrame.iloc
   DataFrame.insert
   DataFrame.__iter__
   DataFrame.items
   DataFrame.keys
   DataFrame.iteritems
   DataFrame.iterrows
   DataFrame.itertuples
   DataFrame.lookup
   DataFrame.pop
   DataFrame.tail
   DataFrame.xs
   DataFrame.get
   DataFrame.isin
   DataFrame.where
   DataFrame.mask
   DataFrame.query

For more information on .at, .iat, .loc, and .iloc, see the :ref:`indexing documentation <indexing>`.

Binary operator functions

.. autosummary::
   :toctree: generated/

   DataFrame.add
   DataFrame.sub
   DataFrame.mul
   DataFrame.div
   DataFrame.truediv
   DataFrame.floordiv
   DataFrame.mod
   DataFrame.pow
   DataFrame.dot
   DataFrame.radd
   DataFrame.rsub
   DataFrame.rmul
   DataFrame.rdiv
   DataFrame.rtruediv
   DataFrame.rfloordiv
   DataFrame.rmod
   DataFrame.rpow
   DataFrame.lt
   DataFrame.gt
   DataFrame.le
   DataFrame.ge
   DataFrame.ne
   DataFrame.eq
   DataFrame.combine
   DataFrame.combine_first

Function application, GroupBy & Window

.. autosummary::
   :toctree: generated/

   DataFrame.apply
   DataFrame.applymap
   DataFrame.pipe
   DataFrame.agg
   DataFrame.aggregate
   DataFrame.transform
   DataFrame.groupby
   DataFrame.rolling
   DataFrame.expanding
   DataFrame.ewm

Computations / Descriptive Stats

.. autosummary::
   :toctree: generated/

   DataFrame.abs
   DataFrame.all
   DataFrame.any
   DataFrame.clip
   DataFrame.clip_lower
   DataFrame.clip_upper
   DataFrame.compound
   DataFrame.corr
   DataFrame.corrwith
   DataFrame.count
   DataFrame.cov
   DataFrame.cummax
   DataFrame.cummin
   DataFrame.cumprod
   DataFrame.cumsum
   DataFrame.describe
   DataFrame.diff
   DataFrame.eval
   DataFrame.kurt
   DataFrame.kurtosis
   DataFrame.mad
   DataFrame.max
   DataFrame.mean
   DataFrame.median
   DataFrame.min
   DataFrame.mode
   DataFrame.pct_change
   DataFrame.prod
   DataFrame.product
   DataFrame.quantile
   DataFrame.rank
   DataFrame.round
   DataFrame.sem
   DataFrame.skew
   DataFrame.sum
   DataFrame.std
   DataFrame.var
   DataFrame.nunique

Reindexing / Selection / Label manipulation

.. autosummary::
   :toctree: generated/

   DataFrame.add_prefix
   DataFrame.add_suffix
   DataFrame.align
   DataFrame.at_time
   DataFrame.between_time
   DataFrame.drop
   DataFrame.drop_duplicates
   DataFrame.duplicated
   DataFrame.equals
   DataFrame.filter
   DataFrame.first
   DataFrame.head
   DataFrame.idxmax
   DataFrame.idxmin
   DataFrame.last
   DataFrame.reindex
   DataFrame.reindex_axis
   DataFrame.reindex_like
   DataFrame.rename
   DataFrame.rename_axis
   DataFrame.reset_index
   DataFrame.sample
   DataFrame.select
   DataFrame.set_axis
   DataFrame.set_index
   DataFrame.tail
   DataFrame.take
   DataFrame.truncate

Missing data handling

.. autosummary::
   :toctree: generated/

   DataFrame.dropna
   DataFrame.fillna
   DataFrame.replace
   DataFrame.interpolate

Reshaping, sorting, transposing

.. autosummary::
   :toctree: generated/

   DataFrame.droplevel
   DataFrame.pivot
   DataFrame.pivot_table
   DataFrame.reorder_levels
   DataFrame.sort_values
   DataFrame.sort_index
   DataFrame.nlargest
   DataFrame.nsmallest
   DataFrame.swaplevel
   DataFrame.stack
   DataFrame.unstack
   DataFrame.swapaxes
   DataFrame.melt
   DataFrame.squeeze
   DataFrame.to_panel
   DataFrame.to_xarray
   DataFrame.T
   DataFrame.transpose

Combining / joining / merging

.. autosummary::
   :toctree: generated/

   DataFrame.append
   DataFrame.assign
   DataFrame.join
   DataFrame.merge
   DataFrame.update

Time series-related

.. autosummary::
   :toctree: generated/

   DataFrame.asfreq
   DataFrame.asof
   DataFrame.shift
   DataFrame.slice_shift
   DataFrame.tshift
   DataFrame.first_valid_index
   DataFrame.last_valid_index
   DataFrame.resample
   DataFrame.to_period
   DataFrame.to_timestamp
   DataFrame.tz_convert
   DataFrame.tz_localize

Plotting

DataFrame.plot is both a callable method and a namespace attribute for specific plotting methods of the form DataFrame.plot.<kind>.

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_callable.rst

   DataFrame.plot

.. autosummary::
   :toctree: generated/
   :template: autosummary/accessor_method.rst

   DataFrame.plot.area
   DataFrame.plot.bar
   DataFrame.plot.barh
   DataFrame.plot.box
   DataFrame.plot.density
   DataFrame.plot.hexbin
   DataFrame.plot.hist
   DataFrame.plot.kde
   DataFrame.plot.line
   DataFrame.plot.pie
   DataFrame.plot.scatter

.. autosummary::
   :toctree: generated/

   DataFrame.boxplot
   DataFrame.hist

Serialization / IO / Conversion

.. autosummary::
   :toctree: generated/

   DataFrame.from_csv
   DataFrame.from_dict
   DataFrame.from_items
   DataFrame.from_records
   DataFrame.info
   DataFrame.to_parquet
   DataFrame.to_pickle
   DataFrame.to_csv
   DataFrame.to_hdf
   DataFrame.to_sql
   DataFrame.to_dict
   DataFrame.to_excel
   DataFrame.to_json
   DataFrame.to_html
   DataFrame.to_feather
   DataFrame.to_latex
   DataFrame.to_stata
   DataFrame.to_msgpack
   DataFrame.to_gbq
   DataFrame.to_records
   DataFrame.to_sparse
   DataFrame.to_dense
   DataFrame.to_string
   DataFrame.to_clipboard
   DataFrame.style

Sparse

.. autosummary::
   :toctree: generated/

   SparseDataFrame.to_coo

Panel

Constructor

.. autosummary::
   :toctree: generated/

   Panel

Attributes and underlying data

Axes

  • items: axis 0; each item corresponds to a DataFrame contained inside
  • major_axis: axis 1; the index (rows) of each of the DataFrames
  • minor_axis: axis 2; the columns of each of the DataFrames
.. autosummary::
   :toctree: generated/

   Panel.values
   Panel.axes
   Panel.ndim
   Panel.size
   Panel.shape
   Panel.dtypes
   Panel.ftypes
   Panel.get_dtype_counts
   Panel.get_ftype_counts

Conversion

.. autosummary::
   :toctree: generated/

   Panel.astype
   Panel.copy
   Panel.isna
   Panel.notna

Getting and setting

.. autosummary::
   :toctree: generated/

   Panel.get_value
   Panel.set_value

Indexing, iteration, slicing

.. autosummary::
   :toctree: generated/

   Panel.at
   Panel.iat
   Panel.loc
   Panel.iloc
   Panel.__iter__
   Panel.iteritems
   Panel.pop
   Panel.xs
   Panel.major_xs
   Panel.minor_xs

For more information on .at, .iat, .loc, and .iloc, see the :ref:`indexing documentation <indexing>`.

Binary operator functions

.. autosummary::
   :toctree: generated/

   Panel.add
   Panel.sub
   Panel.mul
   Panel.div
   Panel.truediv
   Panel.floordiv
   Panel.mod
   Panel.pow
   Panel.radd
   Panel.rsub
   Panel.rmul
   Panel.rdiv
   Panel.rtruediv
   Panel.rfloordiv
   Panel.rmod
   Panel.rpow
   Panel.lt
   Panel.gt
   Panel.le
   Panel.ge
   Panel.ne
   Panel.eq

Function application, GroupBy

.. autosummary::
   :toctree: generated/

   Panel.apply
   Panel.groupby

Computations / Descriptive Stats

.. autosummary::
   :toctree: generated/

   Panel.abs
   Panel.clip
   Panel.clip_lower
   Panel.clip_upper
   Panel.count
   Panel.cummax
   Panel.cummin
   Panel.cumprod
   Panel.cumsum
   Panel.max
   Panel.mean
   Panel.median
   Panel.min
   Panel.pct_change
   Panel.prod
   Panel.sem
   Panel.skew
   Panel.sum
   Panel.std
   Panel.var


Reindexing / Selection / Label manipulation

.. autosummary::
   :toctree: generated/

   Panel.add_prefix
   Panel.add_suffix
   Panel.drop
   Panel.equals
   Panel.filter
   Panel.first
   Panel.last
   Panel.reindex
   Panel.reindex_axis
   Panel.reindex_like
   Panel.rename
   Panel.sample
   Panel.select
   Panel.take
   Panel.truncate


Missing data handling

.. autosummary::
   :toctree: generated/

   Panel.dropna

Reshaping, sorting, transposing

.. autosummary::
   :toctree: generated/

   Panel.sort_index
   Panel.swaplevel
   Panel.transpose
   Panel.swapaxes
   Panel.conform

Combining / joining / merging

.. autosummary::
   :toctree: generated/

   Panel.join
   Panel.update

Time series-related

.. autosummary::
   :toctree: generated/

   Panel.asfreq
   Panel.shift
   Panel.resample
   Panel.tz_convert
   Panel.tz_localize

Serialization / IO / Conversion

.. autosummary::
   :toctree: generated/

   Panel.from_dict
   Panel.to_pickle
   Panel.to_excel
   Panel.to_hdf
   Panel.to_sparse
   Panel.to_frame
   Panel.to_clipboard

Index

Many of these methods or variants thereof are available on the objects that contain an index (Series/DataFrame) and those should most likely be used before calling these methods directly.

.. autosummary::
   :toctree: generated/

   Index

Attributes

.. autosummary::
   :toctree: generated/

   Index.values
   Index.is_monotonic
   Index.is_monotonic_increasing
   Index.is_monotonic_decreasing
   Index.is_unique
   Index.has_duplicates
   Index.hasnans
   Index.dtype
   Index.dtype_str
   Index.inferred_type
   Index.is_all_dates
   Index.shape
   Index.name
   Index.names
   Index.nbytes
   Index.ndim
   Index.size
   Index.empty
   Index.strides
   Index.itemsize
   Index.base
   Index.T
   Index.memory_usage

Modifying and Computations

.. autosummary::
   :toctree: generated/

   Index.all
   Index.any
   Index.argmin
   Index.argmax
   Index.copy
   Index.delete
   Index.drop
   Index.drop_duplicates
   Index.duplicated
   Index.equals
   Index.factorize
   Index.identical
   Index.insert
   Index.is_
   Index.is_boolean
   Index.is_categorical
   Index.is_floating
   Index.is_integer
   Index.is_interval
   Index.is_mixed
   Index.is_numeric
   Index.is_object
   Index.min
   Index.max
   Index.reindex
   Index.rename
   Index.repeat
   Index.where
   Index.take
   Index.putmask
   Index.unique
   Index.nunique
   Index.value_counts

Compatibility with MultiIndex

.. autosummary::
   :toctree: generated/

   Index.set_names
   Index.is_lexsorted_for_tuple
   Index.droplevel

Missing Values

.. autosummary::
   :toctree: generated/

   Index.fillna
   Index.dropna
   Index.isna
   Index.notna

Conversion

.. autosummary::
   :toctree: generated/

   Index.astype
   Index.item
   Index.map
   Index.ravel
   Index.to_list
   Index.to_native_types
   Index.to_series
   Index.to_frame
   Index.view

Sorting

.. autosummary::
   :toctree: generated/

   Index.argsort
   Index.searchsorted
   Index.sort_values

Time-specific operations

.. autosummary::
   :toctree: generated/

   Index.shift

Combining / joining / set operations

.. autosummary::
   :toctree: generated/

   Index.append
   Index.join
   Index.intersection
   Index.union
   Index.difference
   Index.symmetric_difference

Selecting

.. autosummary::
   :toctree: generated/

   Index.asof
   Index.asof_locs
   Index.contains
   Index.get_duplicates
   Index.get_indexer
   Index.get_indexer_for
   Index.get_indexer_non_unique
   Index.get_level_values
   Index.get_loc
   Index.get_slice_bound
   Index.get_value
   Index.get_values
   Index.set_value
   Index.isin
   Index.slice_indexer
   Index.slice_locs

Numeric Index

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   RangeIndex
   Int64Index
   UInt64Index
   Float64Index

.. autosummary::
   :toctree: generated/

   RangeIndex.from_range


CategoricalIndex

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   CategoricalIndex

Categorical Components

.. autosummary::
   :toctree: generated/

   CategoricalIndex.codes
   CategoricalIndex.categories
   CategoricalIndex.ordered
   CategoricalIndex.rename_categories
   CategoricalIndex.reorder_categories
   CategoricalIndex.add_categories
   CategoricalIndex.remove_categories
   CategoricalIndex.remove_unused_categories
   CategoricalIndex.set_categories
   CategoricalIndex.as_ordered
   CategoricalIndex.as_unordered

Modifying and Computations

.. autosummary::
   :toctree: generated/

   CategoricalIndex.map
   CategoricalIndex.equals

IntervalIndex

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   IntervalIndex

IntervalIndex Components

.. autosummary::
   :toctree: generated/

   IntervalIndex.from_arrays
   IntervalIndex.from_tuples
   IntervalIndex.from_breaks
   IntervalIndex.contains
   IntervalIndex.left
   IntervalIndex.right
   IntervalIndex.mid
   IntervalIndex.closed
   IntervalIndex.length
   IntervalIndex.values
   IntervalIndex.is_non_overlapping_monotonic
   IntervalIndex.is_overlapping
   IntervalIndex.get_loc
   IntervalIndex.get_indexer
   IntervalIndex.set_closed
   IntervalIndex.overlaps
   IntervalArray.to_tuples


MultiIndex

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   MultiIndex

.. autosummary::
   :toctree: generated/

   IndexSlice

MultiIndex Constructors

.. autosummary::
   :toctree: generated/

   MultiIndex.from_arrays
   MultiIndex.from_tuples
   MultiIndex.from_product
   MultiIndex.from_frame

MultiIndex Attributes

.. autosummary::
   :toctree: generated/

   MultiIndex.names
   MultiIndex.levels
   MultiIndex.codes
   MultiIndex.nlevels
   MultiIndex.levshape

MultiIndex Components

.. autosummary::
   :toctree: generated/

   MultiIndex.set_levels
   MultiIndex.set_codes
   MultiIndex.to_hierarchical
   MultiIndex.to_flat_index
   MultiIndex.to_frame
   MultiIndex.is_lexsorted
   MultiIndex.sortlevel
   MultiIndex.droplevel
   MultiIndex.swaplevel
   MultiIndex.reorder_levels
   MultiIndex.remove_unused_levels

MultiIndex Selecting

.. autosummary::
   :toctree: generated/

   MultiIndex.get_loc
   MultiIndex.get_loc_level
   MultiIndex.get_indexer
   MultiIndex.get_level_values

DatetimeIndex

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   DatetimeIndex

Time/Date Components

.. autosummary::
   :toctree: generated/

   DatetimeIndex.year
   DatetimeIndex.month
   DatetimeIndex.day
   DatetimeIndex.hour
   DatetimeIndex.minute
   DatetimeIndex.second
   DatetimeIndex.microsecond
   DatetimeIndex.nanosecond
   DatetimeIndex.date
   DatetimeIndex.time
   DatetimeIndex.timetz
   DatetimeIndex.dayofyear
   DatetimeIndex.weekofyear
   DatetimeIndex.week
   DatetimeIndex.dayofweek
   DatetimeIndex.weekday
   DatetimeIndex.quarter
   DatetimeIndex.tz
   DatetimeIndex.freq
   DatetimeIndex.freqstr
   DatetimeIndex.is_month_start
   DatetimeIndex.is_month_end
   DatetimeIndex.is_quarter_start
   DatetimeIndex.is_quarter_end
   DatetimeIndex.is_year_start
   DatetimeIndex.is_year_end
   DatetimeIndex.is_leap_year
   DatetimeIndex.inferred_freq

Selecting

.. autosummary::
   :toctree: generated/

   DatetimeIndex.indexer_at_time
   DatetimeIndex.indexer_between_time


Time-specific operations

.. autosummary::
   :toctree: generated/

   DatetimeIndex.normalize
   DatetimeIndex.strftime
   DatetimeIndex.snap
   DatetimeIndex.tz_convert
   DatetimeIndex.tz_localize
   DatetimeIndex.round
   DatetimeIndex.floor
   DatetimeIndex.ceil
   DatetimeIndex.month_name
   DatetimeIndex.day_name

Conversion

.. autosummary::
   :toctree: generated/

   DatetimeIndex.to_period
   DatetimeIndex.to_perioddelta
   DatetimeIndex.to_pydatetime
   DatetimeIndex.to_series
   DatetimeIndex.to_frame

TimedeltaIndex

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   TimedeltaIndex

Components

.. autosummary::
   :toctree: generated/

   TimedeltaIndex.days
   TimedeltaIndex.seconds
   TimedeltaIndex.microseconds
   TimedeltaIndex.nanoseconds
   TimedeltaIndex.components
   TimedeltaIndex.inferred_freq

Conversion

.. autosummary::
   :toctree: generated/

   TimedeltaIndex.to_pytimedelta
   TimedeltaIndex.to_series
   TimedeltaIndex.round
   TimedeltaIndex.floor
   TimedeltaIndex.ceil
   TimedeltaIndex.to_frame

.. currentmodule:: pandas

PeriodIndex

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   PeriodIndex

Attributes

.. autosummary::
    :toctree: generated/

    PeriodIndex.day
    PeriodIndex.dayofweek
    PeriodIndex.dayofyear
    PeriodIndex.days_in_month
    PeriodIndex.daysinmonth
    PeriodIndex.end_time
    PeriodIndex.freq
    PeriodIndex.freqstr
    PeriodIndex.hour
    PeriodIndex.is_leap_year
    PeriodIndex.minute
    PeriodIndex.month
    PeriodIndex.quarter
    PeriodIndex.qyear
    PeriodIndex.second
    PeriodIndex.start_time
    PeriodIndex.week
    PeriodIndex.weekday
    PeriodIndex.weekofyear
    PeriodIndex.year

Methods

.. autosummary::
    :toctree: generated/

    PeriodIndex.asfreq
    PeriodIndex.strftime
    PeriodIndex.to_timestamp

Scalars

Period

.. autosummary::
    :toctree: generated/

    Period

Attributes

.. autosummary::
    :toctree: generated/

    Period.day
    Period.dayofweek
    Period.dayofyear
    Period.days_in_month
    Period.daysinmonth
    Period.end_time
    Period.freq
    Period.freqstr
    Period.hour
    Period.is_leap_year
    Period.minute
    Period.month
    Period.ordinal
    Period.quarter
    Period.qyear
    Period.second
    Period.start_time
    Period.week
    Period.weekday
    Period.weekofyear
    Period.year

Methods

.. autosummary::
    :toctree: generated/

    Period.asfreq
    Period.now
    Period.strftime
    Period.to_timestamp

Timestamp

.. autosummary::
    :toctree: generated/

    Timestamp

Properties

.. autosummary::
    :toctree: generated/

    Timestamp.asm8
    Timestamp.day
    Timestamp.dayofweek
    Timestamp.dayofyear
    Timestamp.days_in_month
    Timestamp.daysinmonth
    Timestamp.fold
    Timestamp.hour
    Timestamp.is_leap_year
    Timestamp.is_month_end
    Timestamp.is_month_start
    Timestamp.is_quarter_end
    Timestamp.is_quarter_start
    Timestamp.is_year_end
    Timestamp.is_year_start
    Timestamp.max
    Timestamp.microsecond
    Timestamp.min
    Timestamp.minute
    Timestamp.month
    Timestamp.nanosecond
    Timestamp.quarter
    Timestamp.resolution
    Timestamp.second
    Timestamp.tz
    Timestamp.tzinfo
    Timestamp.value
    Timestamp.week
    Timestamp.weekofyear
    Timestamp.year

Methods

.. autosummary::
    :toctree: generated/

    Timestamp.astimezone
    Timestamp.ceil
    Timestamp.combine
    Timestamp.ctime
    Timestamp.date
    Timestamp.day_name
    Timestamp.dst
    Timestamp.floor
    Timestamp.freq
    Timestamp.freqstr
    Timestamp.fromordinal
    Timestamp.fromtimestamp
    Timestamp.isocalendar
    Timestamp.isoformat
    Timestamp.isoweekday
    Timestamp.month_name
    Timestamp.normalize
    Timestamp.now
    Timestamp.replace
    Timestamp.round
    Timestamp.strftime
    Timestamp.strptime
    Timestamp.time
    Timestamp.timestamp
    Timestamp.timetuple
    Timestamp.timetz
    Timestamp.to_datetime64
    Timestamp.to_julian_date
    Timestamp.to_period
    Timestamp.to_pydatetime
    Timestamp.today
    Timestamp.toordinal
    Timestamp.tz_convert
    Timestamp.tz_localize
    Timestamp.tzname
    Timestamp.utcfromtimestamp
    Timestamp.utcnow
    Timestamp.utcoffset
    Timestamp.utctimetuple
    Timestamp.weekday

Interval

.. autosummary::
    :toctree: generated/

    Interval

Properties

.. autosummary::
    :toctree: generated/

    Interval.closed
    Interval.closed_left
    Interval.closed_right
    Interval.left
    Interval.length
    Interval.mid
    Interval.open_left
    Interval.open_right
    Interval.overlaps
    Interval.right

Timedelta

.. autosummary::
    :toctree: generated/

    Timedelta

Properties

.. autosummary::
    :toctree: generated/

    Timedelta.asm8
    Timedelta.components
    Timedelta.days
    Timedelta.delta
    Timedelta.freq
    Timedelta.is_populated
    Timedelta.max
    Timedelta.microseconds
    Timedelta.min
    Timedelta.nanoseconds
    Timedelta.resolution
    Timedelta.seconds
    Timedelta.value
    Timedelta.view

Methods

.. autosummary::
    :toctree: generated/

    Timedelta.ceil
    Timedelta.floor
    Timedelta.isoformat
    Timedelta.round
    Timedelta.to_pytimedelta
    Timedelta.to_timedelta64
    Timedelta.total_seconds

Date Offsets

.. currentmodule:: pandas.tseries.offsets

DateOffset

.. autosummary::
   :toctree: generated/

    DateOffset

Properties

.. autosummary::
   :toctree: generated/

    DateOffset.freqstr
    DateOffset.kwds
    DateOffset.name
    DateOffset.nanos
    DateOffset.normalize
    DateOffset.rule_code

Methods

.. autosummary::
   :toctree: generated/

    DateOffset.apply
    DateOffset.copy
    DateOffset.isAnchored
    DateOffset.onOffset

BusinessDay

.. autosummary::
   :toctree: generated/

    BusinessDay

Properties

.. autosummary::
   :toctree: generated/

    BusinessDay.freqstr
    BusinessDay.kwds
    BusinessDay.name
    BusinessDay.nanos
    BusinessDay.normalize
    BusinessDay.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BusinessDay.apply
    BusinessDay.apply_index
    BusinessDay.copy
    BusinessDay.isAnchored
    BusinessDay.onOffset

BusinessHour

.. autosummary::
   :toctree: generated/

    BusinessHour

Properties

.. autosummary::
   :toctree: generated/

    BusinessHour.freqstr
    BusinessHour.kwds
    BusinessHour.name
    BusinessHour.nanos
    BusinessHour.normalize
    BusinessHour.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BusinessHour.apply
    BusinessHour.copy
    BusinessHour.isAnchored
    BusinessHour.onOffset

CustomBusinessDay

.. autosummary::
   :toctree: generated/

    CustomBusinessDay

Properties

.. autosummary::
   :toctree: generated/

    CustomBusinessDay.freqstr
    CustomBusinessDay.kwds
    CustomBusinessDay.name
    CustomBusinessDay.nanos
    CustomBusinessDay.normalize
    CustomBusinessDay.rule_code

Methods

.. autosummary::
   :toctree: generated/

    CustomBusinessDay.apply
    CustomBusinessDay.copy
    CustomBusinessDay.isAnchored
    CustomBusinessDay.onOffset

CustomBusinessHour

.. autosummary::
   :toctree: generated/

    CustomBusinessHour

Properties

.. autosummary::
   :toctree: generated/

    CustomBusinessHour.freqstr
    CustomBusinessHour.kwds
    CustomBusinessHour.name
    CustomBusinessHour.nanos
    CustomBusinessHour.normalize
    CustomBusinessHour.rule_code

Methods

.. autosummary::
   :toctree: generated/

    CustomBusinessHour.apply
    CustomBusinessHour.copy
    CustomBusinessHour.isAnchored
    CustomBusinessHour.onOffset

MonthOffset

.. autosummary::
   :toctree: generated/

    MonthOffset

Properties

.. autosummary::
   :toctree: generated/

    MonthOffset.freqstr
    MonthOffset.kwds
    MonthOffset.name
    MonthOffset.nanos
    MonthOffset.normalize
    MonthOffset.rule_code

Methods

.. autosummary::
   :toctree: generated/

    MonthOffset.apply
    MonthOffset.apply_index
    MonthOffset.copy
    MonthOffset.isAnchored
    MonthOffset.onOffset

MonthEnd

.. autosummary::
   :toctree: generated/

    MonthEnd

Properties

.. autosummary::
   :toctree: generated/

    MonthEnd.freqstr
    MonthEnd.kwds
    MonthEnd.name
    MonthEnd.nanos
    MonthEnd.normalize
    MonthEnd.rule_code

Methods

.. autosummary::
   :toctree: generated/

    MonthEnd.apply
    MonthEnd.apply_index
    MonthEnd.copy
    MonthEnd.isAnchored
    MonthEnd.onOffset

MonthBegin

.. autosummary::
   :toctree: generated/

    MonthBegin

Properties

.. autosummary::
   :toctree: generated/

    MonthBegin.freqstr
    MonthBegin.kwds
    MonthBegin.name
    MonthBegin.nanos
    MonthBegin.normalize
    MonthBegin.rule_code

Methods

.. autosummary::
   :toctree: generated/

    MonthBegin.apply
    MonthBegin.apply_index
    MonthBegin.copy
    MonthBegin.isAnchored
    MonthBegin.onOffset

BusinessMonthEnd

.. autosummary::
   :toctree: generated/

    BusinessMonthEnd

Properties

.. autosummary::
   :toctree: generated/

    BusinessMonthEnd.freqstr
    BusinessMonthEnd.kwds
    BusinessMonthEnd.name
    BusinessMonthEnd.nanos
    BusinessMonthEnd.normalize
    BusinessMonthEnd.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BusinessMonthEnd.apply
    BusinessMonthEnd.apply_index
    BusinessMonthEnd.copy
    BusinessMonthEnd.isAnchored
    BusinessMonthEnd.onOffset

BusinessMonthBegin

.. autosummary::
   :toctree: generated/

    BusinessMonthBegin

Properties

.. autosummary::
   :toctree: generated/

    BusinessMonthBegin.freqstr
    BusinessMonthBegin.kwds
    BusinessMonthBegin.name
    BusinessMonthBegin.nanos
    BusinessMonthBegin.normalize
    BusinessMonthBegin.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BusinessMonthBegin.apply
    BusinessMonthBegin.apply_index
    BusinessMonthBegin.copy
    BusinessMonthBegin.isAnchored
    BusinessMonthBegin.onOffset

CustomBusinessMonthEnd

.. autosummary::
   :toctree: generated/

    CustomBusinessMonthEnd

Properties

.. autosummary::
   :toctree: generated/

    CustomBusinessMonthEnd.freqstr
    CustomBusinessMonthEnd.kwds
    CustomBusinessMonthEnd.m_offset
    CustomBusinessMonthEnd.name
    CustomBusinessMonthEnd.nanos
    CustomBusinessMonthEnd.normalize
    CustomBusinessMonthEnd.rule_code

Methods

.. autosummary::
   :toctree: generated/

    CustomBusinessMonthEnd.apply
    CustomBusinessMonthEnd.copy
    CustomBusinessMonthEnd.isAnchored
    CustomBusinessMonthEnd.onOffset

CustomBusinessMonthBegin

.. autosummary::
   :toctree: generated/

    CustomBusinessMonthBegin

Properties

.. autosummary::
   :toctree: generated/

    CustomBusinessMonthBegin.freqstr
    CustomBusinessMonthBegin.kwds
    CustomBusinessMonthBegin.m_offset
    CustomBusinessMonthBegin.name
    CustomBusinessMonthBegin.nanos
    CustomBusinessMonthBegin.normalize
    CustomBusinessMonthBegin.rule_code

Methods

.. autosummary::
   :toctree: generated/

    CustomBusinessMonthBegin.apply
    CustomBusinessMonthBegin.copy
    CustomBusinessMonthBegin.isAnchored
    CustomBusinessMonthBegin.onOffset

SemiMonthOffset

.. autosummary::
   :toctree: generated/

    SemiMonthOffset

Properties

.. autosummary::
   :toctree: generated/

    SemiMonthOffset.freqstr
    SemiMonthOffset.kwds
    SemiMonthOffset.name
    SemiMonthOffset.nanos
    SemiMonthOffset.normalize
    SemiMonthOffset.rule_code

Methods

.. autosummary::
   :toctree: generated/

    SemiMonthOffset.apply
    SemiMonthOffset.apply_index
    SemiMonthOffset.copy
    SemiMonthOffset.isAnchored
    SemiMonthOffset.onOffset

SemiMonthEnd

.. autosummary::
   :toctree: generated/

    SemiMonthEnd

Properties

.. autosummary::
   :toctree: generated/

    SemiMonthEnd.freqstr
    SemiMonthEnd.kwds
    SemiMonthEnd.name
    SemiMonthEnd.nanos
    SemiMonthEnd.normalize
    SemiMonthEnd.rule_code

Methods

.. autosummary::
   :toctree: generated/

    SemiMonthEnd.apply
    SemiMonthEnd.apply_index
    SemiMonthEnd.copy
    SemiMonthEnd.isAnchored
    SemiMonthEnd.onOffset

SemiMonthBegin

.. autosummary::
   :toctree: generated/

    SemiMonthBegin

Properties

.. autosummary::
   :toctree: generated/

    SemiMonthBegin.freqstr
    SemiMonthBegin.kwds
    SemiMonthBegin.name
    SemiMonthBegin.nanos
    SemiMonthBegin.normalize
    SemiMonthBegin.rule_code

Methods

.. autosummary::
   :toctree: generated/

    SemiMonthBegin.apply
    SemiMonthBegin.apply_index
    SemiMonthBegin.copy
    SemiMonthBegin.isAnchored
    SemiMonthBegin.onOffset

Week

.. autosummary::
   :toctree: generated/

    Week

Properties

.. autosummary::
   :toctree: generated/

    Week.freqstr
    Week.kwds
    Week.name
    Week.nanos
    Week.normalize
    Week.rule_code

Methods

.. autosummary::
   :toctree: generated/

    Week.apply
    Week.apply_index
    Week.copy
    Week.isAnchored
    Week.onOffset

WeekOfMonth

.. autosummary::
   :toctree: generated/

    WeekOfMonth

Properties

.. autosummary::
   :toctree: generated/

    WeekOfMonth.freqstr
    WeekOfMonth.kwds
    WeekOfMonth.name
    WeekOfMonth.nanos
    WeekOfMonth.normalize
    WeekOfMonth.rule_code

Methods

.. autosummary::
   :toctree: generated/

    WeekOfMonth.apply
    WeekOfMonth.copy
    WeekOfMonth.isAnchored
    WeekOfMonth.onOffset

LastWeekOfMonth

.. autosummary::
   :toctree: generated/

    LastWeekOfMonth

Properties

.. autosummary::
   :toctree: generated/

    LastWeekOfMonth.freqstr
    LastWeekOfMonth.kwds
    LastWeekOfMonth.name
    LastWeekOfMonth.nanos
    LastWeekOfMonth.normalize
    LastWeekOfMonth.rule_code

Methods

.. autosummary::
   :toctree: generated/

    LastWeekOfMonth.apply
    LastWeekOfMonth.copy
    LastWeekOfMonth.isAnchored
    LastWeekOfMonth.onOffset

QuarterOffset

.. autosummary::
   :toctree: generated/

    QuarterOffset

Properties

.. autosummary::
   :toctree: generated/

    QuarterOffset.freqstr
    QuarterOffset.kwds
    QuarterOffset.name
    QuarterOffset.nanos
    QuarterOffset.normalize
    QuarterOffset.rule_code

Methods

.. autosummary::
   :toctree: generated/

    QuarterOffset.apply
    QuarterOffset.apply_index
    QuarterOffset.copy
    QuarterOffset.isAnchored
    QuarterOffset.onOffset

BQuarterEnd

.. autosummary::
   :toctree: generated/

    BQuarterEnd

Properties

.. autosummary::
   :toctree: generated/

    BQuarterEnd.freqstr
    BQuarterEnd.kwds
    BQuarterEnd.name
    BQuarterEnd.nanos
    BQuarterEnd.normalize
    BQuarterEnd.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BQuarterEnd.apply
    BQuarterEnd.apply_index
    BQuarterEnd.copy
    BQuarterEnd.isAnchored
    BQuarterEnd.onOffset

BQuarterBegin

.. autosummary::
   :toctree: generated/

    BQuarterBegin

Properties

.. autosummary::
   :toctree: generated/

    BQuarterBegin.freqstr
    BQuarterBegin.kwds
    BQuarterBegin.name
    BQuarterBegin.nanos
    BQuarterBegin.normalize
    BQuarterBegin.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BQuarterBegin.apply
    BQuarterBegin.apply_index
    BQuarterBegin.copy
    BQuarterBegin.isAnchored
    BQuarterBegin.onOffset

QuarterEnd

.. autosummary::
   :toctree: generated/

    QuarterEnd

Properties

.. autosummary::
   :toctree: generated/

    QuarterEnd.freqstr
    QuarterEnd.kwds
    QuarterEnd.name
    QuarterEnd.nanos
    QuarterEnd.normalize
    QuarterEnd.rule_code

Methods

.. autosummary::
   :toctree: generated/

    QuarterEnd.apply
    QuarterEnd.apply_index
    QuarterEnd.copy
    QuarterEnd.isAnchored
    QuarterEnd.onOffset

QuarterBegin

.. autosummary::
   :toctree: generated/

    QuarterBegin

Properties

.. autosummary::
   :toctree: generated/

    QuarterBegin.freqstr
    QuarterBegin.kwds
    QuarterBegin.name
    QuarterBegin.nanos
    QuarterBegin.normalize
    QuarterBegin.rule_code

Methods

.. autosummary::
   :toctree: generated/

    QuarterBegin.apply
    QuarterBegin.apply_index
    QuarterBegin.copy
    QuarterBegin.isAnchored
    QuarterBegin.onOffset

YearOffset

.. autosummary::
   :toctree: generated/

    YearOffset

Properties

.. autosummary::
   :toctree: generated/

    YearOffset.freqstr
    YearOffset.kwds
    YearOffset.name
    YearOffset.nanos
    YearOffset.normalize
    YearOffset.rule_code

Methods

.. autosummary::
   :toctree: generated/

    YearOffset.apply
    YearOffset.apply_index
    YearOffset.copy
    YearOffset.isAnchored
    YearOffset.onOffset

BYearEnd

.. autosummary::
   :toctree: generated/

    BYearEnd

Properties

.. autosummary::
   :toctree: generated/

    BYearEnd.freqstr
    BYearEnd.kwds
    BYearEnd.name
    BYearEnd.nanos
    BYearEnd.normalize
    BYearEnd.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BYearEnd.apply
    BYearEnd.apply_index
    BYearEnd.copy
    BYearEnd.isAnchored
    BYearEnd.onOffset

BYearBegin

.. autosummary::
   :toctree: generated/

    BYearBegin

Properties

.. autosummary::
   :toctree: generated/

    BYearBegin.freqstr
    BYearBegin.kwds
    BYearBegin.name
    BYearBegin.nanos
    BYearBegin.normalize
    BYearBegin.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BYearBegin.apply
    BYearBegin.apply_index
    BYearBegin.copy
    BYearBegin.isAnchored
    BYearBegin.onOffset

YearEnd

.. autosummary::
   :toctree: generated/

    YearEnd

Properties

.. autosummary::
   :toctree: generated/

    YearEnd.freqstr
    YearEnd.kwds
    YearEnd.name
    YearEnd.nanos
    YearEnd.normalize
    YearEnd.rule_code

Methods

.. autosummary::
   :toctree: generated/

    YearEnd.apply
    YearEnd.apply_index
    YearEnd.copy
    YearEnd.isAnchored
    YearEnd.onOffset

YearBegin

.. autosummary::
   :toctree: generated/

    YearBegin

Properties

.. autosummary::
   :toctree: generated/

    YearBegin.freqstr
    YearBegin.kwds
    YearBegin.name
    YearBegin.nanos
    YearBegin.normalize
    YearBegin.rule_code

Methods

.. autosummary::
   :toctree: generated/

    YearBegin.apply
    YearBegin.apply_index
    YearBegin.copy
    YearBegin.isAnchored
    YearBegin.onOffset

FY5253

.. autosummary::
   :toctree: generated/

    FY5253

Properties

.. autosummary::
   :toctree: generated/

    FY5253.freqstr
    FY5253.kwds
    FY5253.name
    FY5253.nanos
    FY5253.normalize
    FY5253.rule_code

Methods

.. autosummary::
   :toctree: generated/

    FY5253.apply
    FY5253.copy
    FY5253.get_rule_code_suffix
    FY5253.get_year_end
    FY5253.isAnchored
    FY5253.onOffset

FY5253Quarter

.. autosummary::
   :toctree: generated/

    FY5253Quarter

Properties

.. autosummary::
   :toctree: generated/

    FY5253Quarter.freqstr
    FY5253Quarter.kwds
    FY5253Quarter.name
    FY5253Quarter.nanos
    FY5253Quarter.normalize
    FY5253Quarter.rule_code

Methods

.. autosummary::
   :toctree: generated/

    FY5253Quarter.apply
    FY5253Quarter.copy
    FY5253Quarter.get_weeks
    FY5253Quarter.isAnchored
    FY5253Quarter.onOffset
    FY5253Quarter.year_has_extra_week

Easter

.. autosummary::
   :toctree: generated/

    Easter

Properties

.. autosummary::
   :toctree: generated/

    Easter.freqstr
    Easter.kwds
    Easter.name
    Easter.nanos
    Easter.normalize
    Easter.rule_code

Methods

.. autosummary::
   :toctree: generated/

    Easter.apply
    Easter.copy
    Easter.isAnchored
    Easter.onOffset

Tick

.. autosummary::
   :toctree: generated/

    Tick

Properties

.. autosummary::
   :toctree: generated/

    Tick.delta
    Tick.freqstr
    Tick.kwds
    Tick.name
    Tick.nanos
    Tick.normalize
    Tick.rule_code

Methods

.. autosummary::
   :toctree: generated/

    Tick.copy
    Tick.isAnchored
    Tick.onOffset

Day

.. autosummary::
   :toctree: generated/

    Day

Properties

.. autosummary::
   :toctree: generated/

    Day.delta
    Day.freqstr
    Day.kwds
    Day.name
    Day.nanos
    Day.normalize
    Day.rule_code

Methods

.. autosummary::
   :toctree: generated/

    Day.copy
    Day.isAnchored
    Day.onOffset

Hour

.. autosummary::
   :toctree: generated/

    Hour

Properties

.. autosummary::
   :toctree: generated/

    Hour.delta
    Hour.freqstr
    Hour.kwds
    Hour.name
    Hour.nanos
    Hour.normalize
    Hour.rule_code

Methods

.. autosummary::
   :toctree: generated/

    Hour.copy
    Hour.isAnchored
    Hour.onOffset

Minute

.. autosummary::
   :toctree: generated/

    Minute

Properties

.. autosummary::
   :toctree: generated/

    Minute.delta
    Minute.freqstr
    Minute.kwds
    Minute.name
    Minute.nanos
    Minute.normalize
    Minute.rule_code

Methods

.. autosummary::
   :toctree: generated/

    Minute.copy
    Minute.isAnchored
    Minute.onOffset

Second

.. autosummary::
   :toctree: generated/

    Second

Properties

.. autosummary::
   :toctree: generated/

    Second.delta
    Second.freqstr
    Second.kwds
    Second.name
    Second.nanos
    Second.normalize
    Second.rule_code

Methods

.. autosummary::
   :toctree: generated/

    Second.copy
    Second.isAnchored
    Second.onOffset

Milli

.. autosummary::
   :toctree: generated/

    Milli

Properties

.. autosummary::
   :toctree: generated/

    Milli.delta
    Milli.freqstr
    Milli.kwds
    Milli.name
    Milli.nanos
    Milli.normalize
    Milli.rule_code

Methods

.. autosummary::
   :toctree: generated/

    Milli.copy
    Milli.isAnchored
    Milli.onOffset

Micro

.. autosummary::
   :toctree: generated/

    Micro

Properties

.. autosummary::
   :toctree: generated/

    Micro.delta
    Micro.freqstr
    Micro.kwds
    Micro.name
    Micro.nanos
    Micro.normalize
    Micro.rule_code

Methods

.. autosummary::
   :toctree: generated/

    Micro.copy
    Micro.isAnchored
    Micro.onOffset

Nano

.. autosummary::
   :toctree: generated/

    Nano

Properties

.. autosummary::
   :toctree: generated/

    Nano.delta
    Nano.freqstr
    Nano.kwds
    Nano.name
    Nano.nanos
    Nano.normalize
    Nano.rule_code

Methods

.. autosummary::
   :toctree: generated/

    Nano.copy
    Nano.isAnchored
    Nano.onOffset

BDay

.. autosummary::
   :toctree: generated/

    BDay

Properties

.. autosummary::
   :toctree: generated/

    BDay.base
    BDay.freqstr
    BDay.kwds
    BDay.name
    BDay.nanos
    BDay.normalize
    BDay.offset
    BDay.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BDay.apply
    BDay.apply_index
    BDay.copy
    BDay.isAnchored
    BDay.onOffset
    BDay.rollback
    BDay.rollforward

BMonthEnd

.. autosummary::
   :toctree: generated/

    BMonthEnd

Properties

.. autosummary::
   :toctree: generated/

    BMonthEnd.base
    BMonthEnd.freqstr
    BMonthEnd.kwds
    BMonthEnd.name
    BMonthEnd.nanos
    BMonthEnd.normalize
    BMonthEnd.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BMonthEnd.apply
    BMonthEnd.apply_index
    BMonthEnd.copy
    BMonthEnd.isAnchored
    BMonthEnd.onOffset
    BMonthEnd.rollback
    BMonthEnd.rollforward

BMonthBegin

.. autosummary::
   :toctree: generated/

    BMonthBegin

Properties

.. autosummary::
   :toctree: generated/

    BMonthBegin.base
    BMonthBegin.freqstr
    BMonthBegin.kwds
    BMonthBegin.name
    BMonthBegin.nanos
    BMonthBegin.normalize
    BMonthBegin.rule_code

Methods

.. autosummary::
   :toctree: generated/

    BMonthBegin.apply
    BMonthBegin.apply_index
    BMonthBegin.copy
    BMonthBegin.isAnchored
    BMonthBegin.onOffset
    BMonthBegin.rollback
    BMonthBegin.rollforward

CBMonthEnd

.. autosummary::
   :toctree: generated/

    CBMonthEnd

Properties

.. autosummary::
   :toctree: generated/

    CBMonthEnd.base
    CBMonthEnd.cbday_roll
    CBMonthEnd.freqstr
    CBMonthEnd.kwds
    CBMonthEnd.m_offset
    CBMonthEnd.month_roll
    CBMonthEnd.name
    CBMonthEnd.nanos
    CBMonthEnd.normalize
    CBMonthEnd.offset
    CBMonthEnd.rule_code

Methods

.. autosummary::
   :toctree: generated/

    CBMonthEnd.apply
    CBMonthEnd.apply_index
    CBMonthEnd.copy
    CBMonthEnd.isAnchored
    CBMonthEnd.onOffset
    CBMonthEnd.rollback
    CBMonthEnd.rollforward

CBMonthBegin

.. autosummary::
   :toctree: generated/

    CBMonthBegin

Properties

.. autosummary::
   :toctree: generated/

    CBMonthBegin.base
    CBMonthBegin.cbday_roll
    CBMonthBegin.freqstr
    CBMonthBegin.kwds
    CBMonthBegin.m_offset
    CBMonthBegin.month_roll
    CBMonthBegin.name
    CBMonthBegin.nanos
    CBMonthBegin.normalize
    CBMonthBegin.offset
    CBMonthBegin.rule_code

Methods

.. autosummary::
   :toctree: generated/

    CBMonthBegin.apply
    CBMonthBegin.apply_index
    CBMonthBegin.copy
    CBMonthBegin.isAnchored
    CBMonthBegin.onOffset
    CBMonthBegin.rollback
    CBMonthBegin.rollforward

CDay

.. autosummary::
   :toctree: generated/

    CDay

Properties

.. autosummary::
   :toctree: generated/

    CDay.base
    CDay.freqstr
    CDay.kwds
    CDay.name
    CDay.nanos
    CDay.normalize
    CDay.offset
    CDay.rule_code

Methods

.. autosummary::
   :toctree: generated/

    CDay.apply
    CDay.apply_index
    CDay.copy
    CDay.isAnchored
    CDay.onOffset
    CDay.rollback
    CDay.rollforward

Frequencies

.. currentmodule:: pandas.tseries.frequencies

.. autosummary::
   :toctree: generated/

   to_offset


Window

.. currentmodule:: pandas.core.window

Rolling objects are returned by .rolling calls: :func:`pandas.DataFrame.rolling`, :func:`pandas.Series.rolling`, etc. Expanding objects are returned by .expanding calls: :func:`pandas.DataFrame.expanding`, :func:`pandas.Series.expanding`, etc. EWM objects are returned by .ewm calls: :func:`pandas.DataFrame.ewm`, :func:`pandas.Series.ewm`, etc.

Standard moving window functions

.. currentmodule:: pandas.core.window

.. autosummary::
   :toctree: generated/

   Rolling.count
   Rolling.sum
   Rolling.mean
   Rolling.median
   Rolling.var
   Rolling.std
   Rolling.min
   Rolling.max
   Rolling.corr
   Rolling.cov
   Rolling.skew
   Rolling.kurt
   Rolling.apply
   Rolling.aggregate
   Rolling.quantile
   Window.mean
   Window.sum

Standard expanding window functions

.. currentmodule:: pandas.core.window

.. autosummary::
   :toctree: generated/

   Expanding.count
   Expanding.sum
   Expanding.mean
   Expanding.median
   Expanding.var
   Expanding.std
   Expanding.min
   Expanding.max
   Expanding.corr
   Expanding.cov
   Expanding.skew
   Expanding.kurt
   Expanding.apply
   Expanding.aggregate
   Expanding.quantile

Exponentially-weighted moving window functions

.. currentmodule:: pandas.core.window

.. autosummary::
   :toctree: generated/

   EWM.mean
   EWM.std
   EWM.var
   EWM.corr
   EWM.cov

GroupBy

.. currentmodule:: pandas.core.groupby

GroupBy objects are returned by groupby calls: :func:`pandas.DataFrame.groupby`, :func:`pandas.Series.groupby`, etc.

Indexing, iteration

.. autosummary::
   :toctree: generated/

   GroupBy.__iter__
   GroupBy.groups
   GroupBy.indices
   GroupBy.get_group

.. currentmodule:: pandas

.. autosummary::
   :toctree: generated/
   :template: autosummary/class_without_autosummary.rst

   Grouper

.. currentmodule:: pandas.core.groupby

Function application

.. autosummary::
   :toctree: generated/

   GroupBy.apply
   GroupBy.agg
   GroupBy.aggregate
   GroupBy.transform
   GroupBy.pipe

Computations / Descriptive Stats

.. autosummary::
   :toctree: generated/

   GroupBy.all
   GroupBy.any
   GroupBy.bfill
   GroupBy.count
   GroupBy.cumcount
   GroupBy.ffill
   GroupBy.first
   GroupBy.head
   GroupBy.last
   GroupBy.max
   GroupBy.mean
   GroupBy.median
   GroupBy.min
   GroupBy.ngroup
   GroupBy.nth
   GroupBy.ohlc
   GroupBy.prod
   GroupBy.rank
   GroupBy.pct_change
   GroupBy.size
   GroupBy.sem
   GroupBy.std
   GroupBy.sum
   GroupBy.var
   GroupBy.tail

The following methods are available in both SeriesGroupBy and DataFrameGroupBy objects, but may differ slightly, usually in that the DataFrameGroupBy version usually permits the specification of an axis argument, and often an argument indicating whether to restrict application to columns of a specific data type.

.. autosummary::
   :toctree: generated/

   DataFrameGroupBy.all
   DataFrameGroupBy.any
   DataFrameGroupBy.bfill
   DataFrameGroupBy.corr
   DataFrameGroupBy.count
   DataFrameGroupBy.cov
   DataFrameGroupBy.cummax
   DataFrameGroupBy.cummin
   DataFrameGroupBy.cumprod
   DataFrameGroupBy.cumsum
   DataFrameGroupBy.describe
   DataFrameGroupBy.diff
   DataFrameGroupBy.ffill
   DataFrameGroupBy.fillna
   DataFrameGroupBy.filter
   DataFrameGroupBy.hist
   DataFrameGroupBy.idxmax
   DataFrameGroupBy.idxmin
   DataFrameGroupBy.mad
   DataFrameGroupBy.pct_change
   DataFrameGroupBy.plot
   DataFrameGroupBy.quantile
   DataFrameGroupBy.rank
   DataFrameGroupBy.resample
   DataFrameGroupBy.shift
   DataFrameGroupBy.size
   DataFrameGroupBy.skew
   DataFrameGroupBy.take
   DataFrameGroupBy.tshift

The following methods are available only for SeriesGroupBy objects.

.. autosummary::
   :toctree: generated/

   SeriesGroupBy.nlargest
   SeriesGroupBy.nsmallest
   SeriesGroupBy.nunique
   SeriesGroupBy.unique
   SeriesGroupBy.value_counts
   SeriesGroupBy.is_monotonic_increasing
   SeriesGroupBy.is_monotonic_decreasing

The following methods are available only for DataFrameGroupBy objects.

.. autosummary::
   :toctree: generated/

   DataFrameGroupBy.corrwith
   DataFrameGroupBy.boxplot

Resampling

.. currentmodule:: pandas.core.resample

Resampler objects are returned by resample calls: :func:`pandas.DataFrame.resample`, :func:`pandas.Series.resample`.

Indexing, iteration

.. autosummary::
   :toctree: generated/

   Resampler.__iter__
   Resampler.groups
   Resampler.indices
   Resampler.get_group

Function application

.. autosummary::
   :toctree: generated/

   Resampler.apply
   Resampler.aggregate
   Resampler.transform
   Resampler.pipe

Upsampling

.. autosummary::
   :toctree: generated/

   Resampler.ffill
   Resampler.backfill
   Resampler.bfill
   Resampler.pad
   Resampler.nearest
   Resampler.fillna
   Resampler.asfreq
   Resampler.interpolate

Computations / Descriptive Stats

.. autosummary::
   :toctree: generated/

   Resampler.count
   Resampler.nunique
   Resampler.first
   Resampler.last
   Resampler.max
   Resampler.mean
   Resampler.median
   Resampler.min
   Resampler.ohlc
   Resampler.prod
   Resampler.size
   Resampler.sem
   Resampler.std
   Resampler.sum
   Resampler.var
   Resampler.quantile

Style

.. currentmodule:: pandas.io.formats.style

Styler objects are returned by :attr:`pandas.DataFrame.style`.

Styler Constructor

.. autosummary::
   :toctree: generated/

   Styler
   Styler.from_custom_template


Styler Attributes

.. autosummary::
   :toctree: generated/

   Styler.env
   Styler.template
   Styler.loader

Style Application

.. autosummary::
   :toctree: generated/

   Styler.apply
   Styler.applymap
   Styler.where
   Styler.format
   Styler.set_precision
   Styler.set_table_styles
   Styler.set_table_attributes
   Styler.set_caption
   Styler.set_properties
   Styler.set_uuid
   Styler.clear
   Styler.pipe

Builtin Styles

.. autosummary::
   :toctree: generated/

   Styler.highlight_max
   Styler.highlight_min
   Styler.highlight_null
   Styler.background_gradient
   Styler.bar

Style Export and Import

.. autosummary::
   :toctree: generated/

   Styler.render
   Styler.export
   Styler.use
   Styler.to_excel

Plotting

.. currentmodule:: pandas.plotting

The following functions are contained in the pandas.plotting module.

.. autosummary::
   :toctree: generated/

   andrews_curves
   bootstrap_plot
   deregister_matplotlib_converters
   lag_plot
   parallel_coordinates
   radviz
   register_matplotlib_converters
   scatter_matrix

.. currentmodule:: pandas

General utility functions

Working with options

.. autosummary::
   :toctree: generated/

   describe_option
   reset_option
   get_option
   set_option
   option_context

Testing functions

.. autosummary::
   :toctree: generated/

   testing.assert_frame_equal
   testing.assert_series_equal
   testing.assert_index_equal


Exceptions and warnings

.. autosummary::
   :toctree: generated/

   errors.DtypeWarning
   errors.EmptyDataError
   errors.OutOfBoundsDatetime
   errors.ParserError
   errors.ParserWarning
   errors.PerformanceWarning
   errors.UnsortedIndexError
   errors.UnsupportedFunctionCall


Data types related functionality

.. autosummary::
   :toctree: generated/

   api.types.union_categoricals
   api.types.infer_dtype
   api.types.pandas_dtype

Dtype introspection

.. autosummary::
   :toctree: generated/

    api.types.is_bool_dtype
    api.types.is_categorical_dtype
    api.types.is_complex_dtype
    api.types.is_datetime64_any_dtype
    api.types.is_datetime64_dtype
    api.types.is_datetime64_ns_dtype
    api.types.is_datetime64tz_dtype
    api.types.is_extension_type
    api.types.is_float_dtype
    api.types.is_int64_dtype
    api.types.is_integer_dtype
    api.types.is_interval_dtype
    api.types.is_numeric_dtype
    api.types.is_object_dtype
    api.types.is_period_dtype
    api.types.is_signed_integer_dtype
    api.types.is_string_dtype
    api.types.is_timedelta64_dtype
    api.types.is_timedelta64_ns_dtype
    api.types.is_unsigned_integer_dtype
    api.types.is_sparse

Iterable introspection

.. autosummary::
   :toctree: generated/

    api.types.is_dict_like
    api.types.is_file_like
    api.types.is_list_like
    api.types.is_named_tuple
    api.types.is_iterator

Scalar introspection

.. autosummary::
   :toctree: generated/

    api.types.is_bool
    api.types.is_categorical
    api.types.is_complex
    api.types.is_datetimetz
    api.types.is_float
    api.types.is_hashable
    api.types.is_integer
    api.types.is_interval
    api.types.is_number
    api.types.is_period
    api.types.is_re
    api.types.is_re_compilable
    api.types.is_scalar

Extensions

These are primarily intended for library authors looking to extend pandas objects.

.. currentmodule:: pandas

.. autosummary::
   :toctree: generated/

   api.extensions.register_extension_dtype
   api.extensions.register_dataframe_accessor
   api.extensions.register_series_accessor
   api.extensions.register_index_accessor
   api.extensions.ExtensionDtype
   api.extensions.ExtensionArray
   arrays.PandasArray

.. toctree::
   :hidden:

   generated/pandas.DataFrame.blocks
   generated/pandas.DataFrame.as_matrix
   generated/pandas.DataFrame.ix
   generated/pandas.Index.asi8
   generated/pandas.Index.data
   generated/pandas.Index.flags
   generated/pandas.Index.holds_integer
   generated/pandas.Index.is_type_compatible
   generated/pandas.Index.nlevels
   generated/pandas.Index.sort
   generated/pandas.Panel.agg
   generated/pandas.Panel.aggregate
   generated/pandas.Panel.blocks
   generated/pandas.Panel.empty
   generated/pandas.Panel.is_copy
   generated/pandas.Panel.items
   generated/pandas.Panel.ix
   generated/pandas.Panel.major_axis
   generated/pandas.Panel.minor_axis
   generated/pandas.Series.asobject
   generated/pandas.Series.blocks
   generated/pandas.Series.from_array
   generated/pandas.Series.ix
   generated/pandas.Series.imag
   generated/pandas.Series.real


.. toctree::
   :hidden:

   generated/pandas.api.extensions.ExtensionDtype.na_value