From 212719c92da0bfb10a5e9d8d4783f7b927ce64c9 Mon Sep 17 00:00:00 2001 From: partev Date: Tue, 26 May 2020 14:49:47 -0400 Subject: [PATCH 1/2] add a semicolon to hide debug messages add a semicolon to hide debug messages like: Out[85]: array([[, , , ], [, , , ], [, , , ], [, , , ]], dtype=object) which you can see here: https://pandas.pydata.org/docs/user_guide/visualization.html --- doc/source/user_guide/visualization.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/user_guide/visualization.rst b/doc/source/user_guide/visualization.rst index 451ddf046416e..4dd1ff653eb5d 100644 --- a/doc/source/user_guide/visualization.rst +++ b/doc/source/user_guide/visualization.rst @@ -821,7 +821,7 @@ You can create a scatter plot matrix using the df = pd.DataFrame(np.random.randn(1000, 4), columns=['a', 'b', 'c', 'd']) @savefig scatter_matrix_kde.png - scatter_matrix(df, alpha=0.2, figsize=(6, 6), diagonal='kde') + scatter_matrix(df, alpha=0.2, figsize=(6, 6), diagonal='kde'); .. ipython:: python :suppress: @@ -1683,4 +1683,4 @@ to generate the plots. Some libraries implementing a backend for pandas are list on the ecosystem :ref:`ecosystem.visualization` page. Developers guide can be found at -https://dev.pandas.io/docs/development/extending.html#plotting-backends \ No newline at end of file +https://dev.pandas.io/docs/development/extending.html#plotting-backends From 6aa07e7fa57ab66480745fc3445f7f75d53aa7f2 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Wed, 27 May 2020 16:27:01 +0200 Subject: [PATCH 2/2] Update doc/source/user_guide/visualization.rst --- doc/source/user_guide/visualization.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/user_guide/visualization.rst b/doc/source/user_guide/visualization.rst index 4dd1ff653eb5d..814627043cfc8 100644 --- a/doc/source/user_guide/visualization.rst +++ b/doc/source/user_guide/visualization.rst @@ -1683,4 +1683,4 @@ to generate the plots. Some libraries implementing a backend for pandas are list on the ecosystem :ref:`ecosystem.visualization` page. Developers guide can be found at -https://dev.pandas.io/docs/development/extending.html#plotting-backends +https://pandas.pydata.org/docs/dev/development/extending.html#plotting-backends