Skip to content

Commit bef7c39

Browse files
DOC: fix PR07,RT03,SA01 for pandas.plotting.table (#58892)
1 parent 23e4c3a commit bef7c39

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
479479
-i "pandas.plotting.lag_plot RT03,SA01" \
480480
-i "pandas.plotting.parallel_coordinates PR07,RT03,SA01" \
481481
-i "pandas.plotting.scatter_matrix PR07,SA01" \
482-
-i "pandas.plotting.table PR07,RT03,SA01" \
483482
-i "pandas.qcut PR07,SA01" \
484483
-i "pandas.read_orc SA01" \
485484
-i "pandas.read_spss SA01" \

pandas/plotting/_misc.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def table(ax: Axes, data: DataFrame | Series, **kwargs) -> Table:
3333
Parameters
3434
----------
3535
ax : Matplotlib axes object
36+
The axes on which to draw the table.
3637
data : DataFrame or Series
3738
Data for table contents.
3839
**kwargs
@@ -43,6 +44,12 @@ def table(ax: Axes, data: DataFrame | Series, **kwargs) -> Table:
4344
Returns
4445
-------
4546
matplotlib table object
47+
The created table as a matplotlib Table object.
48+
49+
See Also
50+
--------
51+
DataFrame.plot : Make plots of DataFrame using matplotlib.
52+
matplotlib.pyplot.table : Create a table from data in a Matplotlib plot.
4653
4754
Examples
4855
--------

0 commit comments

Comments
 (0)