jakevdp / PythonDataScienceHandbook

Python Data Science Handbook: full text in Jupyter Notebooks
http://jakevdp.github.io/PythonDataScienceHandbook
MIT License
42.69k stars 17.82k forks source link

`join_axes` keyword and `append` method deprecated #375

Open albas99 opened 1 year ago

albas99 commented 1 year ago

The join_axes argument from pandas.concat() has been deprecated: See here for more details.

The pandas.DataFrame.append method is also deprecated and is no longer in use: More details

These methods are still in the book and might be misleading to beginners who are not aware of the deprecation.

SudhanAnnamalai commented 1 year ago

Hi Albas99

The book entirely based on the supporting packages installed, and the reader has to tune their python environment using requirement.txt file. For further information you can checkout the materials in Readme.md; Specifically under the subtitle "Software"

Hope this helps

albas99 commented 10 months ago

Oh, okay. got it.

So either the read should create a python 3.5 based environment or tweak the packages based on their environment.

Thanks for the clarification @SudhanAnnamalai