File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -609,9 +609,17 @@ apply your own functions to the data using :obj:`~pandas.DataFrame.apply`::
609609
610610
611611Note 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
616624Alternatives to Pandas
617625----------------------
You can’t perform that action at this time.
0 commit comments