From 1c8c0227d84471b50dc08a62870d14e8cf1d6c9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9rinat=20Tobias=20iamerina?= Date: Wed, 4 Sep 2019 13:19:44 +0200 Subject: [PATCH] fix typo in example --- doc/source/user_guide/options.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/user_guide/options.rst b/doc/source/user_guide/options.rst index f32a8adfd4d33..1f1dff417e68f 100644 --- a/doc/source/user_guide/options.rst +++ b/doc/source/user_guide/options.rst @@ -163,7 +163,7 @@ determines how many rows are shown in the truncated repr. .. ipython:: python pd.set_option('max_rows', 8) - pd.set_option('max_rows', 4) + pd.set_option('min_rows', 4) # below max_rows -> all rows shown df = pd.DataFrame(np.random.randn(7, 2)) df