pandas.lib module is deprecated and will be removed in a future version.
See original GitHub issueFor ggplot 0.11.5 (in anaconda for python 3.6.2) I get the warning
[...]/lib/python3.6/site-packages/ggplot/stats/smoothers.py:4: FutureWarning: The pandas.lib module is deprecated and will be removed in a future version. These are private functions and can be accessed from pandas._libs.lib instead from pandas.lib import Timestamp
Issue Analytics
- State:
- Created 6 years ago
- Comments:12
Top Results From Across the Web
pandas.tslib is deprecated and will be removed in a future ...
I just ran into this warning this morning. I was able to get rid of it by following these steps: Open command prompt...
Read more >Pandas.np depreciation warning - Forum
The pandas.np module is deprecated and will be removed from pandas in a future version. ... Also what is your Eikon and RDP...
Read more >What's new in 1.4.0 (January 22, 2022) - Pandas
DataFrame.append() and Series.append() have been deprecated and will be removed in a future version. Use pandas.concat() instead (GH35407).
Read more >Deprecated Python Library (pandas.core.datetools)
No, you don't need to fix it. It is just a warning. Hopefully it will disapear in future pandas' version.
Read more >What's New In Python 3.11 — Python 3.11.1 documentation
Release, 3.11.1,, Date, December 21, 2022,, Editor, Pablo Galindo Salgado,. ... library modules have been deprecated and will be removed in Python 3.13....
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 Free
Top 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
In smoothers.py changing
from pandas.libs import Timestamp
to
from pandas._libs.tslibs.timestamps import Timestamp
resolved the issue for me.
Go to C:\Users\windows\anaconda3\Lib\site-packages\ggplot\stats\smoothers.py
Then, change
from pandas.lib import Timestamp
tofrom pandas import Timestamp