Skip to content

Commit 63dda53

Browse files
authored
DOC: add a semicolon to hide long matplotlib axes return value (#34393)
1 parent 5239cfa commit 63dda53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/source/user_guide/visualization.rst

+2-2
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://pandas.pydata.org/docs/dev/development/extending.html#plotting-backends

0 commit comments

Comments
 (0)