Skip to content

Commit 212719c

Browse files
authored
add a semicolon to hide debug messages
add a semicolon to hide debug messages like: Out[85]: array([[<matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0ad6e3d0>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0ad4a350>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0aa10250>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0a6367d0>], [<matplotlib.axes._subplots.AxesSubplot object at 0x7f3d088c2d50>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d089ea310>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d08d89890>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0a76ae10>], [<matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0a756090>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0a8dd750>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d096aaed0>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0937d490>], [<matplotlib.axes._subplots.AxesSubplot object at 0x7f3d09f49a10>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0a0551d0>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0a418550>, <matplotlib.axes._subplots.AxesSubplot object at 0x7f3d0a6f0ad0>]], dtype=object) which you can see here: https://pandas.pydata.org/docs/user_guide/visualization.html
1 parent 65d9fe4 commit 212719c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/source/user_guide/visualization.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ You can create a scatter plot matrix using the
821821
df = pd.DataFrame(np.random.randn(1000, 4), columns=['a', 'b', 'c', 'd'])
822822
823823
@savefig scatter_matrix_kde.png
824-
scatter_matrix(df, alpha=0.2, figsize=(6, 6), diagonal='kde')
824+
scatter_matrix(df, alpha=0.2, figsize=(6, 6), diagonal='kde');
825825
826826
.. ipython:: python
827827
:suppress:
@@ -1683,4 +1683,4 @@ to generate the plots. Some libraries implementing a backend for pandas are list
16831683
on the ecosystem :ref:`ecosystem.visualization` page.
16841684

16851685
Developers guide can be found at
1686-
https://dev.pandas.io/docs/development/extending.html#plotting-backends
1686+
https://dev.pandas.io/docs/development/extending.html#plotting-backends

0 commit comments

Comments
 (0)