Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

agriconnect / pandas   python

Repository URL to install this package:

/ core / categorical.py

import warnings

from pandas.core.dtypes.dtypes import CategoricalDtype  # noqa

from pandas.core.arrays import Categorical  # noqa

# TODO: Remove after 0.23.x
warnings.warn("'pandas.core' is private. Use 'pandas.Categorical'",
              FutureWarning, stacklevel=2)