Skip to content

Commit 624ddbf

Browse files
committed
Pandas: further reading
1 parent 5b5260e commit 624ddbf

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

content/pandas.rst

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -609,9 +609,17 @@ apply your own functions to the data using :obj:`~pandas.DataFrame.apply`::
609609

610610

611611
Note that the numpy precision for integers caps at int64 while python ints are unbounded --
612-
limited by memory size. Thus, the result from fibonacci(99) would be erroneous when
613-
using numpy ints. The type of df['Number of Rabbits'][99] given by both functions above
614-
is in fact <class 'int'>.
612+
limited by memory size. Thus, the result from ``fibonacci(99)`` would be erroneous when
613+
using numpy ints. The type of ``df['Number of Rabbits'][99]`` given by both functions above
614+
is in fact ``<class 'int'>``.
615+
616+
.. seealso::
617+
618+
- `Modern Pandas <https://tomaugspurger.net/posts/modern-1-intro/>`__ (2020) -- a blog series
619+
on writing modern idiomatic pandas.
620+
- `Python Data Science Handbook <https://jakevdp.github.io/PythonDataScienceHandbook/index.html>`__ (2016) --
621+
which contains a chapter on `Data Manipulation with Pandas`.
622+
615623

616624
Alternatives to Pandas
617625
----------------------

0 commit comments

Comments
 (0)