Last answered:

27 Feb 2020

Posted on:

27 Feb 2020

0

Warning message

What does this message mean? C:\Users\Geggino\Anaconda3\lib\site-packages\numpy\core\fromnumeric.py:2389: FutureWarning: Method .ptp is deprecated and will be removed in a future version. Use numpy.ptp instead. return ptp(axis=axis, out=out, **kwargs) Thanks, Luigi  
1 answers ( 0 marked as helpful)
Instructor
Posted on:

27 Feb 2020

0
Hi Luigi, This is simply a warning (a way for developers to communicate with us - users). Note that 'deprecated' means that it is still functional, but they will be removing it in the future. Sometimes they never remove such functions, they just stop supporting them (and stop using them in newer code). Python is an open-source project and all libraries are being updated all the time by different people. In this case one method case been replaced with another. The summary table you are creating is using this method... for now. In the next version that will surely change. Usually everyday users are never affected by such changes, but this is very important for Python developers, writing the libraries. Best,
The 365 Team

Submit an answer