Back to Pandas

Limit

doc/source/getting_started/comparison/includes/limit.rst

3.1.0.dev0266 B
Original Source

By default, pandas will truncate output of large DataFrame\s to show the first and last rows. This can be overridden by :ref:changing the pandas options <options>, or using :meth:DataFrame.head or :meth:DataFrame.tail.

.. ipython:: python

tips.head(5)