DEPR: pandas.core, pandas.util.testing
See original GitHub issuexref #16223
These are the only remaining ‘public’-ish directories that are not explicitly exposed. In 0.20.0 we make these ‘private’ in documentation. We should actually deprecate these and move to _core
and pandas.util.testing
-> pandas.core.testing
This will need a DeprecationWarning as likely lots of code that is out there that uses this.
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
pandas.testing.assert_frame_equal - DataFrame
This function is intended to compare two DataFrames and output any differences. It is mostly intended for use in unit tests. Additional parameters...
Read more >FutureWarning: pandas.util.testing is deprecated - Python Forum
I am using anaconda3 windows10. I am coding main.ipynb using jupyter notebook. I wrote a function in 2.py which is in the same...
Read more >module 'pandas' has no attribute 'core' in iPython Notebook ...
After updating my bash profile, the error AttributeError: module 'pandas' has no attribute 'core' did not appear anymore.
Read more >Using Pandas and Python to Explore Your Dataset
In this step-by-step tutorial, you'll learn how to start exploring a dataset with Pandas and Python. You'll learn how to access specific rows...
Read more >FutureWarning: pandas.util.testing is deprecated. - CSDN博客
今天在使用python的时候,发现有一处warning提示:C:\Users\Administrator\Anaconda3\lib\site-packages\dask\dataframe\utils.py:14: FutureWarning: ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I am also not sure we can do
core
, but we might want to doutil.testing
, as we havepandas.testing
as alternative. The probable problem is that we have only put few things there, and people are using other functionality fromutil.testing
like themake..
functions.Is this any different from https://github.com/pandas-dev/pandas/issues/27522? I guess just
pandas.util.testing
, and leave https://github.com/pandas-dev/pandas/issues/27522 forpandas.core
?