PythonDataScienceHandbook
PythonDataScienceHandbook copied to clipboard
Python Data Science Handbook: full text in Jupyter Notebooks
`pandas.DataFrame.ix` is deprecated as of version `0.20.0`, and consequently the following code from https://jakevdp.github.io/PythonDataScienceHandbook/03.11-working-with-time-series.html generates error if alternative is not used (described in second code block). _incorrect (uses deprecated indexer):_...
Future versions of Pandas will not support `pd.Index` operations like this: ```py first | second ``` but must be used like this ```py first.union(second) ``` This is similar for `&`...
Hi everyone. I have developed an alternative documentation with mkdocs, google colab and github actions. This repository lives at [fralfaro/PythonDataScienceHandbook](https://github.com/fralfaro/PythonDataScienceHandbook) (documentation: [link](https://fralfaro.github.io/PythonDataScienceHandbook/)). In each chapter there is a jupyter notebook...
Ignore this message, i'm just training with GitHub, thanks)
testing
Ok
The `join_axes` argument from `pandas.concat()` has been deprecated: [See here](https://pandas.pydata.org/docs/whatsnew/v1.0.0.html?highlight=join_axes#deprecations) for more details. The `pandas.DataFrame.append` method is also deprecated and is no longer in use: [More details](https://pandas.pydata.org/docs/whatsnew/v1.4.0.html?highlight=append#deprecated-dataframe-append-and-series-append) These methods are...